HomeSort by relevance Sort by last modified time
    Searched refs:CHUNK_AVAILABLE (Results 1 - 2 of 2) sorted by null

  /external/compiler-rt/lib/asan/
asan_allocator.cc 106 // CHUNK_AVAILABLE: the chunk is in the free list and ready to be allocated.
116 CHUNK_AVAILABLE = 0x57,
240 CHECK(t->chunk_state == CHUNK_AVAILABLE);
365 if (left_chunk->chunk_state == CHUNK_AVAILABLE &&
366 right_chunk->chunk_state != CHUNK_AVAILABLE)
368 if (right_chunk->chunk_state == CHUNK_AVAILABLE &&
369 left_chunk->chunk_state != CHUNK_AVAILABLE)
390 m->chunk_state == CHUNK_AVAILABLE ||
420 m->chunk_state = CHUNK_AVAILABLE;
465 m->chunk_state = CHUNK_AVAILABLE;
    [all...]
asan_allocator2.cc 98 // CHUNK_AVAILABLE: the chunk is in the free list and ready to be allocated.
102 CHUNK_AVAILABLE = 0, // 0 is the default value even if we didn't set it.
263 m->chunk_state = CHUNK_AVAILABLE;

Completed in 55 milliseconds