HomeSort by: relevance | last modified time | path
    Searched defs:zero_reallocs (Results 1 - 4 of 4) sorted by relevancy

  /src/external/bsd/jemalloc.old/dist/test/unit/
zero_reallocs.c 4 zero_reallocs() { function
11 expect_d_eq(mallctl("stats.zero_reallocs", (void *)&count, &sz,
22 size_t count = zero_reallocs();
26 count = zero_reallocs();
  /src/external/bsd/jemalloc/dist/test/unit/
zero_reallocs.c 4 zero_reallocs(void) { function
12 mallctl("stats.zero_reallocs", (void *)&count, &sz, NULL, 0), 0,
23 size_t count = zero_reallocs();
27 count = zero_reallocs();
  /src/external/bsd/jemalloc.old/dist/src/
stats.c 1690 size_t zero_reallocs; local
1701 CTL_GET("stats.zero_reallocs", &zero_reallocs, size_t);
1726 emitter_json_kv(emitter, "zero_reallocs", emitter_type_size,
1727 &zero_reallocs);
1736 "Count of realloc(non-null-ptr, 0) calls: %zu\n", zero_reallocs);
  /src/external/bsd/jemalloc/dist/src/
stats.c 1877 size_t zero_reallocs; local
1890 CTL_GET("stats.zero_reallocs", &zero_reallocs, size_t);
1920 emitter, "zero_reallocs", emitter_type_size, &zero_reallocs);
1931 "Count of realloc(non-null-ptr, 0) calls: %zu\n", zero_reallocs);

Completed in 23 milliseconds