Home
last modified time | relevance | path

Searched refs:MALLOC_ALIGNMENT (Results 1 – 3 of 3) sorted by relevance

/external/dlmalloc/
Dmalloc.c574 #ifndef MALLOC_ALIGNMENT
575 #define MALLOC_ALIGNMENT ((size_t)16U) macro
617 #ifndef MALLOC_ALIGNMENT
618 #define MALLOC_ALIGNMENT ((size_t)(2 * sizeof(void *))) macro
1615 #define CHUNK_ALIGN_MASK (MALLOC_ALIGNMENT - SIZE_T_ONE)
1623 ((MALLOC_ALIGNMENT - ((size_t)(A) & CHUNK_ALIGN_MASK)) & CHUNK_ALIGN_MASK))
2686 #define SYS_ALLOC_PADDING (TOP_FOOT_SIZE + MALLOC_ALIGNMENT)
3141 (MALLOC_ALIGNMENT < (size_t)8U) || in init_mparams()
3142 ((MALLOC_ALIGNMENT & (MALLOC_ALIGNMENT-SIZE_T_ONE)) != 0) || in init_mparams()
4924 size_t a = MALLOC_ALIGNMENT << 1; in internal_memalign()
[all …]
/external/cmockery/cmockery_0_1_2/src/
Dcmockery.c42 #define MALLOC_ALIGNMENT sizeof(size_t) macro
1260 sizeof(*block_info) + MALLOC_ALIGNMENT; in _test_malloc()
1266 MALLOC_ALIGNMENT) & ~(MALLOC_ALIGNMENT - 1)); in _test_malloc()
/external/python/cpython2/Modules/_ctypes/libffi/src/
Ddlmalloc.c500 #ifndef MALLOC_ALIGNMENT
501 #define MALLOC_ALIGNMENT ((size_t)8U) macro
1273 #define CHUNK_ALIGN_MASK (MALLOC_ALIGNMENT - SIZE_T_ONE)
1281 ((MALLOC_ALIGNMENT - ((size_t)(A) & CHUNK_ALIGN_MASK)) & CHUNK_ALIGN_MASK))
2584 (MALLOC_ALIGNMENT < (size_t)8U) || in init_mparams()
2585 ((MALLOC_ALIGNMENT & (MALLOC_ALIGNMENT-SIZE_T_ONE)) != 0) || in init_mparams()
3911 if (alignment <= MALLOC_ALIGNMENT) /* Can just use malloc */ in internal_memalign()
3916 size_t a = MALLOC_ALIGNMENT << 1; in internal_memalign()