Lines Matching defs:allocated
73 // The memory chunk allocated from the underlying allocator looks like this:
150 // Either just allocated by underlying allocator, but AsanChunk is not yet
154 // The chunk is allocated and not yet freed.
493 // Prefer an allocated chunk over freed chunk and freed chunk
550 // consecutive "new" calls must be different even if the allocated size
580 void *allocated;
583 allocated = allocator.Allocate(cache, needed_size, 8);
587 allocated = allocator.Allocate(cache, needed_size, 8);
589 if (UNLIKELY(!allocated)) {
596 uptr alloc_beg = reinterpret_cast<uptr>(allocated);
612 if (!from_primary || *(u8 *)MEM_TO_SHADOW((uptr)allocated) == 0) {
618 uptr tail_end = alloc_beg + allocator.GetActuallyAllocatedSize(allocated);
663 // Set quarantine flag if chunk is allocated, issue ASan error report on
1169 bool LsanMetadata::allocated() const {