HomeSort by: relevance | last modified time | path
    Searched refs:CHUNK_ALLOCATED (Results 1 - 4 of 4) sorted by relevancy

  /src/external/gpl3/gcc/dist/libsanitizer/asan/
asan_allocator.cpp 154 CHUNK_ALLOCATED = 2,
406 CHUNK_ALLOCATED) {
498 if (left_state == CHUNK_ALLOCATED)
500 if (right_state == CHUNK_ALLOCATED)
519 if (atomic_load(&m->chunk_state, memory_order_acquire) != CHUNK_ALLOCATED)
653 atomic_store(&m->chunk_state, CHUNK_ALLOCATED, memory_order_release);
666 u8 old_chunk_state = CHUNK_ALLOCATED;
675 CHECK_EQ(CHUNK_ALLOCATED, old_chunk_state);
761 if (chunk_state != CHUNK_ALLOCATED)
818 if (state == CHUNK_ALLOCATED || state == CHUNK_QUARANTINE
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/asan/
asan_allocator.cpp 152 CHUNK_ALLOCATED = 2,
362 CHUNK_ALLOCATED) {
453 if (left_state == CHUNK_ALLOCATED)
455 if (right_state == CHUNK_ALLOCATED)
474 if (atomic_load(&m->chunk_state, memory_order_acquire) != CHUNK_ALLOCATED)
605 atomic_store(&m->chunk_state, CHUNK_ALLOCATED, memory_order_release);
618 u8 old_chunk_state = CHUNK_ALLOCATED;
627 CHECK_EQ(CHUNK_ALLOCATED, old_chunk_state);
729 if (chunk_state != CHUNK_ALLOCATED)
786 if (state == CHUNK_ALLOCATED || state == CHUNK_QUARANTINE
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_allocator.cc 106 // CHUNK_ALLOCATED: the chunk is allocated and not yet freed.
110 CHUNK_ALLOCATED = 2,
303 ac->chunk_state == CHUNK_ALLOCATED) {
380 if (left_chunk->chunk_state == CHUNK_ALLOCATED)
382 if (right_chunk->chunk_state == CHUNK_ALLOCATED)
543 atomic_store((atomic_uint8_t *)m, CHUNK_ALLOCATED, memory_order_release);
552 u8 old_chunk_state = CHUNK_ALLOCATED;
561 CHECK_EQ(CHUNK_ALLOCATED, old_chunk_state);
664 if (chunk_state != CHUNK_ALLOCATED)
734 if (m->chunk_state != CHUNK_ALLOCATED) return 0
    [all...]
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_allocator.cpp 42 CHUNK_ALLOCATED = 1,
91 atomic_store(&chunk_state, CHUNK_ALLOCATED, memory_order_release);
102 return atomic_load(&chunk_state, memory_order_relaxed) == CHUNK_ALLOCATED;

Completed in 17 milliseconds