OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:malloc_alignment
(Results
1 - 7
of
7
) sorted by null
/bionic/libc/bionic/
malloc_debug_common.c
283
/* Make sure we have
MALLOC_ALIGNMENT
that matches the one that is
287
#ifndef
MALLOC_ALIGNMENT
288
#define
MALLOC_ALIGNMENT
((size_t)8U)
289
#endif /*
MALLOC_ALIGNMENT
*/
388
if (memcheck_initialize(
MALLOC_ALIGNMENT
, memcheck_tracing)) {
malloc_debug_leak.c
80
#define
MALLOC_ALIGNMENT
8
607
if (alignment <=
MALLOC_ALIGNMENT
)
614
// here, aligment is at least
MALLOC_ALIGNMENT
<<1 bytes
615
// we will align by at least
MALLOC_ALIGNMENT
bytes
616
// and at most alignment-
MALLOC_ALIGNMENT
bytes
617
size_t size = (alignment-
MALLOC_ALIGNMENT
) + bytes;
malloc_debug_qemu.c
241
#define DEFAULT_PREFIX_SIZE (
malloc_alignment
* 4)
246
#define DEFAULT_SUFFIX_SIZE (
malloc_alignment
* 4)
353
static uint32_t
malloc_alignment
= 8;
variable
663
malloc_alignment
= alignment;
826
desc.prefix_size &= ~(
malloc_alignment
- 1);
[
all
...]
dlmalloc.c
73
However, you can define
MALLOC_ALIGNMENT
to be wider than this
239
MALLOC_ALIGNMENT
default: (size_t)8
514
#ifndef
MALLOC_ALIGNMENT
515
#define
MALLOC_ALIGNMENT
((size_t)8U)
516
#endif /*
MALLOC_ALIGNMENT
*/
[
all
...]