Home | History | Annotate | Download | only in integration

Lines Matching refs:sz

9 	size_t nsz, rsz, sz;
12 sz = 42;
13 nsz = nallocx(sz, 0);
15 p = mallocx(sz, 0);
18 assert_zu_ge(rsz, sz, "Real size smaller than expected");
22 p = mallocx(sz, 0);
26 nsz = nallocx(sz, MALLOCX_ZERO);
28 p = mallocx(sz, MALLOCX_ZERO);
38 size_t nsz, rsz, sz, alignment, total;
49 for (sz = 1;
50 sz < 3 * alignment && sz < (1U << 31);
51 sz += (alignment >> (LG_SIZEOF_PTR-1)) - 1) {
53 nsz = nallocx(sz, MALLOCX_ALIGN(alignment) |
57 "size=%zu (%#zx)", alignment, sz, sz);
58 ps[i] = mallocx(sz, MALLOCX_ALIGN(alignment) |
62 "size=%zu (%#zx)", alignment, sz, sz);
64 assert_zu_ge(rsz, sz,
66 "alignment=%zu, size=%zu", alignment, sz);
69 "alignment=%zu, size=%zu", alignment, sz);
74 alignment, sz);