Home
last modified time | relevance | path

Searched refs:unique_id_ (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_thread.h50 bool IsMainThread() { return unique_id_ == 0; } in IsMainThread()
65 u32 unique_id() const { return unique_id_; } in unique_id()
97 u32 unique_id_; // counting from zero. variable
H A Dhwasan_thread.cpp30 random_state_ = flags()->random_tags ? RandomSeed() : unique_id_; in InitRandomState()
41 CHECK_EQ(0, unique_id_); // try to catch bad stack reuse in Init()
46 unique_id_ = atomic_fetch_add(&unique_id, 1, memory_order_relaxed); in Init()
123 Printf("%sT%zd %p stack: [%p,%p) sz: %zd tls: [%p,%p)\n", Prefix, unique_id_, in Print()