Home | History | Annotate | Download | only in integration

Lines Matching refs:mallocx

69 	expect_ptr_null(mallocx(largemax+1, 0),
70 "Expected OOM for mallocx(size=%#zx, 0)", largemax+1);
72 expect_ptr_null(mallocx(ZU(PTRDIFF_MAX)+1, 0),
73 "Expected OOM for mallocx(size=%#zx, 0)", ZU(PTRDIFF_MAX)+1);
75 expect_ptr_null(mallocx(SIZE_T_MAX, 0),
76 "Expected OOM for mallocx(size=%#zx, 0)", SIZE_T_MAX);
78 expect_ptr_null(mallocx(1, MALLOCX_ALIGN(ZU(PTRDIFF_MAX)+1)),
79 "Expected OOM for mallocx(size=1, MALLOCX_ALIGN(%#zx))",
95 void *ptr = mallocx(large_sz, MALLOCX_ARENA(arena)
108 expect_ptr_not_null(ret, "Unexpected mallocx failure");
129 ptrs[i] = mallocx(largemax, MALLOCX_ARENA(0));
135 "Expected OOM during series of calls to mallocx(size=%zu, 0)",
145 expect_ptr_null(mallocx(0x8000000000000000ULL,
147 "Expected OOM for mallocx()");
148 expect_ptr_null(mallocx(0x8000000000000000ULL,
150 "Expected OOM for mallocx()");
152 expect_ptr_null(mallocx(0x80000000UL, MALLOCX_ALIGN(0x80000000UL)),
153 "Expected OOM for mallocx()");
170 p = mallocx(sz, 0);
172 "Unexpected mallocx(size=%zx, flags=0) error", sz);
178 p = mallocx(sz, 0);
180 "Unexpected mallocx(size=%zx, flags=0) error", sz);
185 p = mallocx(sz, MALLOCX_ZERO);
187 "Unexpected mallocx(size=%zx, flags=MALLOCX_ZERO) error",
230 ps[i] = mallocx(sz, MALLOCX_ALIGN(alignment) |
233 "mallocx() error for alignment=%zu, "