Lines Matching defs:zero
45 size_t alignment, bool base, bool *zero)
82 *zero = true;
122 if (*zero) {
138 * If the caller specifies (*zero == false), it is still possible to receive
139 * zeroed memory, in which case *zero is toggled to true. arena_chunk_alloc()
144 chunk_alloc_core(size_t size, size_t alignment, bool base, bool *zero,
157 alignment, base, zero)) != NULL)
159 if ((ret = chunk_alloc_dss(size, alignment, zero)) != NULL)
164 alignment, base, zero)) != NULL)
166 if ((ret = chunk_alloc_mmap(size, alignment, zero)) != NULL)
171 alignment, base, zero)) != NULL)
173 if ((ret = chunk_alloc_dss(size, alignment, zero)) != NULL)
218 bool zero;
220 zero = false;
221 ret = chunk_alloc_core(size, chunksize, true, &zero,
234 unsigned arena_ind, size_t size, size_t alignment, bool *zero)
238 ret = chunk_alloc(size, alignment, zero, arena_ind);
249 chunk_alloc_default(size_t size, size_t alignment, bool *zero,
253 return (chunk_alloc_core(size, alignment, false, zero,