Home | History | Annotate | Download | only in integration

Lines Matching full:mallocx

55 	assert_ptr_null(mallocx(hugemax+1, 0),
56 "Expected OOM for mallocx(size=%#zx, 0)", hugemax+1);
58 assert_ptr_null(mallocx(ZU(PTRDIFF_MAX)+1, 0),
59 "Expected OOM for mallocx(size=%#zx, 0)", ZU(PTRDIFF_MAX)+1);
61 assert_ptr_null(mallocx(SIZE_T_MAX, 0),
62 "Expected OOM for mallocx(size=%#zx, 0)", SIZE_T_MAX);
64 assert_ptr_null(mallocx(1, MALLOCX_ALIGN(ZU(PTRDIFF_MAX)+1)),
65 "Expected OOM for mallocx(size=1, MALLOCX_ALIGN(%#zx))",
83 p = mallocx(hugemax, 0);
85 assert_ptr_null(mallocx(hugemax, 0),
86 "Expected OOM for mallocx(size=%#zx, 0)", hugemax);
98 assert_ptr_null(mallocx(size, MALLOCX_ALIGN(alignment)),
99 "Expected OOM for mallocx(size=%#zx, MALLOCX_ALIGN(%#zx)", size,
114 p = mallocx(sz, 0);
115 assert_ptr_not_null(p, "Unexpected mallocx() error");
121 p = mallocx(sz, 0);
122 assert_ptr_not_null(p, "Unexpected mallocx() error");
127 p = mallocx(sz, MALLOCX_ZERO);
128 assert_ptr_not_null(p, "Unexpected mallocx() error");
161 ps[i] = mallocx(sz, MALLOCX_ALIGN(alignment) |
164 "mallocx() error for alignment=%zu, "