Lines Matching refs:nmalloc
41 uint64_t nmalloc, ndalloc, nrequests;
55 assert_d_eq(mallctl("stats.arenas.0.huge.nmalloc", &nmalloc, &sz, NULL,
65 assert_u64_ge(nmalloc, ndalloc,
66 "nmalloc should be at least as large as ndalloc");
67 assert_u64_le(nmalloc, nrequests,
68 "nmalloc should no larger than nrequests");
147 uint64_t epoch, nmalloc, ndalloc, nrequests;
169 assert_d_eq(mallctl("stats.arenas.0.small.nmalloc", &nmalloc, &sz,
179 assert_u64_gt(nmalloc, 0,
180 "nmalloc should be no greater than zero");
181 assert_u64_ge(nmalloc, ndalloc,
182 "nmalloc should be at least as large as ndalloc");
196 uint64_t epoch, nmalloc, ndalloc, nrequests;
213 assert_d_eq(mallctl("stats.arenas.0.large.nmalloc", &nmalloc, &sz,
223 assert_zu_gt(nmalloc, 0,
224 "nmalloc should be greater than zero");
225 assert_zu_ge(nmalloc, ndalloc,
226 "nmalloc should be at least as large as ndalloc");
240 uint64_t epoch, nmalloc, ndalloc;
257 assert_d_eq(mallctl("stats.arenas.0.huge.nmalloc", &nmalloc, &sz,
265 assert_zu_gt(nmalloc, 0,
266 "nmalloc should be greater than zero");
267 assert_zu_ge(nmalloc, ndalloc,
268 "nmalloc should be at least as large as ndalloc");
280 uint64_t epoch, nmalloc, ndalloc, nrequests, nfills, nflushes;
298 assert_d_eq(mallctl("stats.arenas.0.bins.0.nmalloc", &nmalloc, &sz,
325 assert_u64_gt(nmalloc, 0,
326 "nmalloc should be greater than zero");
327 assert_u64_ge(nmalloc, ndalloc,
328 "nmalloc should be at least as large as ndalloc");
353 uint64_t epoch, nmalloc, ndalloc, nrequests;
368 assert_d_eq(mallctl("stats.arenas.0.lruns.0.nmalloc", &nmalloc, &sz,
379 assert_u64_gt(nmalloc, 0,
380 "nmalloc should be greater than zero");
381 assert_u64_ge(nmalloc, ndalloc,
382 "nmalloc should be at least as large as ndalloc");
397 uint64_t epoch, nmalloc, ndalloc;
412 assert_d_eq(mallctl("stats.arenas.0.hchunks.0.nmalloc", &nmalloc, &sz,
421 assert_u64_gt(nmalloc, 0,
422 "nmalloc should be greater than zero");
423 assert_u64_ge(nmalloc, ndalloc,
424 "nmalloc should be at least as large as ndalloc");