Searched refs:MALLOCALIGN (Results 1 - 3 of 3) sorted by relevance

/freebsd-12-stable/stand/libsa/
H A Dzalloc_defs.h67 #define MALLOCALIGN 64 macro
69 #define MALLOCALIGN 16 macro
71 #define MALLOCALIGN_MASK (MALLOCALIGN - 1)
H A Dzalloc_malloc.c77 bytes += MALLOCALIGN + 1;
79 bytes += MALLOCALIGN;
103 return ((char *)res + MALLOCALIGN);
112 Guard *res = (void *)((char *)ptr - MALLOCALIGN);
135 ptr, res->ga_Bytes - MALLOCALIGN, file, line);
178 Guard *g = (Guard *)((char *)ptr - MALLOCALIGN);
180 old = g->ga_Bytes - MALLOCALIGN;
H A Dzalloc.c77 * They must also be aligned to MALLOCALIGN, which should normally be larger
80 typedef char assert_align[(sizeof(struct MemNode) <= MALLOCALIGN) ? 1 : -1];
120 dptr = (uintptr_t)(ptr + MALLOCALIGN); /* pointer to data */
121 aligned = (char *)(roundup2(dptr, align) - MALLOCALIGN);

Completed in 62 milliseconds