Home | History | Annotate | Download | only in unit

Lines Matching defs:ndalloc

35 	uint64_t nmalloc, ndalloc, nrequests;
52 expect_d_eq(mallctl("stats.arenas.0.large.ndalloc", (void *)&ndalloc,
61 expect_u64_ge(nmalloc, ndalloc,
62 "nmalloc should be at least as large as ndalloc");
150 uint64_t epoch, nmalloc, ndalloc, nrequests;
171 expect_d_eq(mallctl("stats.arenas.0.small.ndalloc", (void *)&ndalloc,
182 expect_u64_ge(nmalloc, ndalloc,
183 "nmalloc should be at least as large as ndalloc");
195 uint64_t epoch, nmalloc, ndalloc;
211 expect_d_eq(mallctl("stats.arenas.0.large.ndalloc", (void *)&ndalloc,
219 expect_u64_ge(nmalloc, ndalloc,
220 "nmalloc should be at least as large as ndalloc");
235 uint64_t epoch, nmalloc, ndalloc, nrequests, nfills, nflushes;
266 gen_mallctl_str(cmd, "ndalloc", arena_ind);
267 expect_d_eq(mallctl(cmd, (void *)&ndalloc, &sz, NULL, 0), expected,
302 expect_u64_ge(nmalloc, ndalloc,
303 "nmalloc should be at least as large as ndalloc");
328 uint64_t epoch, nmalloc, ndalloc;
346 expect_d_eq(mallctl("stats.arenas.0.lextents.0.ndalloc",
347 (void *)&ndalloc, &sz, NULL, 0), expected,
357 expect_u64_ge(nmalloc, ndalloc,
358 "nmalloc should be at least as large as ndalloc");