Searched refs:alignment (Results 1 - 10 of 10) sorted by relevance
/bionic/libc/bionic/ |
H A D | malloc_debug_leak.c | 444 void* chk_memalign(size_t alignment, size_t bytes) argument 485 void* fill_memalign(size_t alignment, size_t bytes) argument 487 void* buffer = dlmemalign(alignment, bytes); 604 void* leak_memalign(size_t alignment, size_t bytes) argument 607 if (alignment <= MALLOC_ALIGNMENT) 611 if (alignment & (alignment-1)) 612 alignment = 1L << (31 - __builtin_clz(alignment)); 616 // and at most alignment [all...] |
H A D | malloc_debug_common.h | 82 void* (*memalign)(size_t alignment, size_t bytes);
|
H A D | malloc_debug_qemu.c | 351 /* Memory allocation alignment that is used in dlmalloc. 609 void* qemu_instrumented_memalign(size_t alignment, size_t bytes); 654 * alignment - Alignment requirement set for memiry allocations. 661 memcheck_initialize(int alignment, const char* memcheck_param) argument 663 malloc_alignment = alignment; 814 /* If default alignment is bigger than element size, we will 815 * set our prefix size to the default alignment size. */ 974 qemu_instrumented_memalign(size_t alignment, size_t bytes) argument 981 malloc_pid, getpid(), alignment, bytes); 985 /* Prefix size for aligned allocation must be equal to the alignment use [all...] |
H A D | dlmalloc.h | 126 memalign(size_t alignment, size_t n); 128 in accord with the alignment argument. 130 The alignment argument should be a power of two. If the argument is 132 8-byte alignment is guaranteed by normal malloc calls, so don't 448 often not) due to alignment and minimum size constraints. 467 because of alignment and bookkeeping overhead. Because it includes 468 alignment wastage as being in use, this figure may be greater than 574 void* mspace_memalign(mspace msp, size_t alignment, size_t bytes);
|
H A D | malloc_debug_common.c | 231 void* memalign(size_t alignment, size_t bytes) { argument 232 return __libc_malloc_dispatch->memalign(alignment, bytes);
|
H A D | dlmalloc.c | 240 Controls the minimum alignment for malloc'ed chunks. It must be a 244 the case of 8-byte alignment. 763 memalign(size_t alignment, size_t n); 765 in accord with the alignment argument. 767 The alignment argument should be a power of two. If the argument is 769 8-byte alignment is guaranteed by normal malloc calls, so don't 1056 often not) due to alignment and minimum size constraints. 1075 because of alignment and bookkeeping overhead. Because it includes 1076 alignment wastage as being in use, this figure may be greater than 1184 void* mspace_memalign(mspace msp, size_t alignment, size_ 4019 internal_memalign(mstate m, size_t alignment, size_t bytes) argument 4506 dlmemalign(size_t alignment, size_t bytes) argument 4988 mspace_memalign(mspace msp, size_t alignment, size_t bytes) argument [all...] |
/bionic/libc/include/ |
H A D | malloc.h | 41 extern void* memalign(size_t alignment, size_t bytesize); 69 often not) due to alignment and minimum size constraints. 88 because of alignment and bookkeeping overhead. Because it includes 89 alignment wastage as being in use, this figure may be greater than
|
/bionic/linker/ |
H A D | Android.mk | 20 # and unloadable. Increasing the alignment adds an extra 3840 bytes in padding
|
/bionic/libc/kernel/common/linux/ |
H A D | msm_vidc_dec.h | 157 uint32_t alignment; member in struct:vdec_allocatorproperty
|
H A D | msm_vidc_enc.h | 272 unsigned long alignment; member in struct:venc_allocatorproperty
|
Completed in 151 milliseconds