Searched defs:M_ZERO (Results 1 - 1 of 1) sorted by relevance
/freebsd-head/sys/sys/ |
H A D | malloc.h | 57 #define M_ZERO 0x0100 /* bzero the allocation */ macro 187 * Try to optimize malloc(..., ..., M_ZERO) allocations by doing zeroing in 196 * known at compilation time. If M_ZERO is passed but M_WAITOK is not, the 200 * _malloc_item = malloc(_size, type, (flags) &~ M_ZERO); 207 * _malloc_item = malloc(_size, type, (flags) &~ M_ZERO); 213 * _malloc_item = malloc(_size, type, (flags) &~ M_ZERO); 225 ((flags) & M_ZERO) != 0) { \ 226 _malloc_item = malloc(_size, type, (flags) &~ M_ZERO); \ 288 #define M_ZERO 0 macro
|
Completed in 96 milliseconds