Home
last modified time | relevance | path

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

/external/llvm-project/compiler-rt/lib/hwasan/
Dhwasan_thread_list.h77 : free_space_(storage), free_space_end_(storage + size) { in HwasanThreadList()
171 CHECK(IsAligned(free_space_, align)); in AllocThread()
172 Thread *t = (Thread *)(free_space_ + ring_buffer_size_); in AllocThread()
173 free_space_ += thread_alloc_size_; in AllocThread()
174 CHECK(free_space_ <= free_space_end_ && "out of thread memory"); in AllocThread()
178 uptr free_space_; variable