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

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_coverage_libcdep.cc128 atomic_uintptr_t pc_array_index; member in class:__sanitizer::CoverageData
205 atomic_store(&pc_array_index, 0, memory_order_relaxed);
234 uptr idx = atomic_load_relaxed(&pc_array_index);
235 atomic_store_relaxed(&pc_array_index, idx + 1);
264 atomic_store(&pc_array_index, 0, memory_order_relaxed);
286 CHECK_EQ(atomic_load(&pc_array_index, memory_order_relaxed), 0);
367 uptr range_end = atomic_load(&pc_array_index, memory_order_relaxed);
411 if (idx >= atomic_load(&pc_array_index, memory_order_acquire))
412 return; // May happen after fork when pc_array_index becomes 0.
516 return atomic_load(&pc_array_index, memory_order_relaxe
[all...]

Completed in 124 milliseconds