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

/freebsd-13-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.c81 bytes += MALLOCALIGN + 1;
83 bytes += MALLOCALIGN;
107 return ((char *)res + MALLOCALIGN);
116 Guard *res = (void *)((char *)ptr - MALLOCALIGN);
144 ptr, res->ga_Bytes - MALLOCALIGN, file, line);
187 Guard *g = (Guard *)((char *)ptr - MALLOCALIGN);
189 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 99 milliseconds