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

/external/compiler-rt/lib/asan/
H A Dasan_allocator2.cc70 // CHUNK_ALLOCATED: the chunk is allocated and not yet freed.
74 CHUNK_ALLOCATED = 2, enumerator in enum:__asan::__anon19573
406 atomic_store((atomic_uint8_t *)m, CHUNK_ALLOCATED, memory_order_release);
420 u8 old_chunk_state = CHUNK_ALLOCATED;
425 CHECK_EQ(CHUNK_ALLOCATED, old_chunk_state);
492 if (chunk_state != CHUNK_ALLOCATED)
533 if (m->chunk_state != CHUNK_ALLOCATED) return 0;
544 if (left_chunk->chunk_state == CHUNK_ALLOCATED)
546 if (right_chunk->chunk_state == CHUNK_ALLOCATED)
694 if (m->chunk_state != __asan::CHUNK_ALLOCATED)
[all...]

Completed in 164 milliseconds