HomeSort by: relevance | last modified time | path
    Searched refs:MALLOCX_ALIGN (Results 1 - 16 of 16) sorted by relevancy

  /src/external/bsd/jemalloc/dist/test/integration/
sdallocx.c 29 nsz = nallocx(sz, MALLOCX_ALIGN(alignment) |
31 ps[i] = mallocx(sz, MALLOCX_ALIGN(alignment) |
41 MALLOCX_ALIGN(alignment));
mallocx.c 78 expect_ptr_null(mallocx(1, MALLOCX_ALIGN(ZU(PTRDIFF_MAX)+1)),
79 "Expected OOM for mallocx(size=1, MALLOCX_ALIGN(%#zx))",
146 MALLOCX_ALIGN(0x8000000000000000ULL)),
149 MALLOCX_ALIGN(0x80000000)),
152 expect_ptr_null(mallocx(0x80000000UL, MALLOCX_ALIGN(0x80000000UL)),
225 nsz = nallocx(sz, MALLOCX_ALIGN(alignment) |
230 ps[i] = mallocx(sz, MALLOCX_ALIGN(alignment) |
smallocx.c 98 expect_ptr_null(smallocx(1, MALLOCX_ALIGN(ZU(PTRDIFF_MAX)+1)).ptr,
99 "Expected OOM for smallocx(size=1, MALLOCX_ALIGN(%#zx))",
170 MALLOCX_ALIGN(0x8000000000000000ULL)).ptr,
173 MALLOCX_ALIGN(0x80000000)).ptr,
176 expect_ptr_null(smallocx(0x80000000UL, MALLOCX_ALIGN(0x80000000UL)).ptr,
258 nsz = nallocx(sz, MALLOCX_ALIGN(alignment) |
264 = smallocx(sz, MALLOCX_ALIGN(alignment) | MALLOCX_ZERO);
rallocx.c 168 p = mallocx(1, MALLOCX_ALIGN(align));
172 q = rallocx(p, 1, MALLOCX_ALIGN(align));
288 expect_ptr_null(rallocx(p, 1, MALLOCX_ALIGN(ZU(PTRDIFF_MAX)+1)),
289 "Expected OOM for rallocx(p, size=1, MALLOCX_ALIGN(%#zx))",
  /src/external/bsd/jemalloc.old/dist/test/integration/
sdallocx.c 29 nsz = nallocx(sz, MALLOCX_ALIGN(alignment) |
31 ps[i] = mallocx(sz, MALLOCX_ALIGN(alignment) |
41 MALLOCX_ALIGN(alignment));
mallocx.c 68 assert_ptr_null(mallocx(1, MALLOCX_ALIGN(ZU(PTRDIFF_MAX)+1)),
69 "Expected OOM for mallocx(size=1, MALLOCX_ALIGN(%#zx))",
104 MALLOCX_ALIGN(0x8000000000000000ULL)),
107 MALLOCX_ALIGN(0x80000000)),
110 assert_ptr_null(mallocx(0x80000000UL, MALLOCX_ALIGN(0x80000000UL)),
180 nsz = nallocx(sz, MALLOCX_ALIGN(alignment) |
185 ps[i] = mallocx(sz, MALLOCX_ALIGN(alignment) |
rallocx.c 156 p = mallocx(1, MALLOCX_ALIGN(align));
160 q = rallocx(p, 1, MALLOCX_ALIGN(align));
229 assert_ptr_null(rallocx(p, 1, MALLOCX_ALIGN(ZU(PTRDIFF_MAX)+1)),
230 "Expected OOM for rallocx(p, size=1, MALLOCX_ALIGN(%#zx))",
  /src/external/bsd/jemalloc/include/jemalloc/
jemalloc_macros.h 17 # define MALLOCX_ALIGN(a) ((int)(ffs((int)(a))-1))
19 # define MALLOCX_ALIGN(a) \
jemalloc.h 141 # define MALLOCX_ALIGN(a) ((int)(ffs((int)(a))-1))
143 # define MALLOCX_ALIGN(a) \
  /src/external/bsd/jemalloc.old/include/jemalloc/
jemalloc_macros.h 16 # define MALLOCX_ALIGN(a) ((int)(ffs((int)(a))-1))
18 # define MALLOCX_ALIGN(a) \
jemalloc.h 129 # define MALLOCX_ALIGN(a) ((int)(ffs((int)(a))-1))
131 # define MALLOCX_ALIGN(a) \
  /src/external/bsd/jemalloc/dist/src/
jemalloc_cpp.cpp 221 je_sdallocx(ptr, size, MALLOCX_ALIGN(alignment));
  /src/external/bsd/jemalloc/dist/test/unit/
batch_alloc.c 98 flags |= MALLOCX_ALIGN(alignment);
rtree.c 38 void *ret = mallocx(sizeof(edata_t), MALLOCX_ALIGN(EDATA_ALIGNMENT));
cache_bin.c 90 void *mem = mallocx(size, MALLOCX_ALIGN(alignment));
prof_recent.c 529 q = mallocx(17, MALLOCX_ALIGN(128));

Completed in 27 milliseconds