Lines Matching defs:allocated
37 // Either just allocated by underlying allocator, but AsanChunk is not yet
41 // The chunk is allocated and not yet freed.
205 void *allocated;
207 allocated = allocator.Allocate(t->allocator_cache(), size, alignment);
211 allocated = allocator.Allocate(cache, size, alignment);
213 if (UNLIKELY(!allocated)) {
222 if (allocator.FromPrimary(allocated))
223 internal_memset(allocated, 0, size);
226 internal_memset(allocated, flags()->malloc_fill_byte, fill_size);
229 u8 *tail = reinterpret_cast<u8 *>(allocated) + orig_size;
236 void *user_ptr = allocated;
245 u8 *short_granule = reinterpret_cast<u8 *>(allocated) + full_granule_size;
257 reinterpret_cast<Metadata *>(allocator.GetMetaData(allocated));
601 bool LsanMetadata::allocated() const {