Home
last modified time | relevance | path

Searched refs:MALLOCX_ZERO (Results 1 – 11 of 11) sorted by relevance

/external/jemalloc_new/test/integration/
Dmallocx.c138 nsz = nallocx(sz, MALLOCX_ZERO); in TEST_BEGIN()
140 p = mallocx(sz, MALLOCX_ZERO); in TEST_BEGIN()
181 MALLOCX_ZERO); in TEST_BEGIN()
186 MALLOCX_ZERO); in TEST_BEGIN()
Drallocx.c115 p = mallocx(start_size, MALLOCX_ZERO); in TEST_BEGIN()
126 q = rallocx(p, start_size+j, MALLOCX_ZERO); in TEST_BEGIN()
182 p = mallocx(1, MALLOCX_LG_ALIGN(lg_align)|MALLOCX_ZERO); in TEST_BEGIN()
186 q = rallocx(p, 1, MALLOCX_LG_ALIGN(lg_align)|MALLOCX_ZERO); in TEST_BEGIN()
Dsdallocx.c30 MALLOCX_ZERO); in TEST_BEGIN()
32 MALLOCX_ZERO); in TEST_BEGIN()
Dxallocx.c316 int flags = MALLOCX_ARENA(arena_ind()) | MALLOCX_ZERO; in test_zero()
/external/jemalloc_new/include/jemalloc/
Djemalloc_macros.h22 #define MALLOCX_ZERO ((int)0x40) macro
Djemalloc_macros.h.in22 #define MALLOCX_ZERO ((int)0x40) macro
Djemalloc.h85 #define MALLOCX_ZERO ((int)0x40) macro
/external/jemalloc_new/include/jemalloc/internal/
Djemalloc_internal_types.h43 ((bool)(flags & MALLOCX_ZERO))
/external/jemalloc_new/src/
Djemalloc.c2683 bool zero = flags & MALLOCX_ZERO;
2849 bool zero = flags & MALLOCX_ZERO;
/external/jemalloc_new/
DChangeLog597 - Fix xallocx(..., MALLOCX_ZERO to zero the last full trailing page of large
606 - Fix xallocx(..., MALLOCX_ZERO) to zero all trailing bytes of large
608 - Fix xallocx(..., MALLOCX_ZERO) to zero trailing bytes of huge allocations
/external/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/
Dmod.rs3138 pub const MALLOCX_ZERO: ::c_int = 0x40; constant