Home
last modified time | relevance | path

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

/NextBSD/contrib/compiler-rt/lib/tsan/rtl/
HDtsan_dense_alloc.h50 freelist_ = 0; in DenseSlabAlloc()
84 *(IndexT*)Map(idx) = freelist_; in FlushCache()
85 freelist_ = idx; in FlushCache()
97 IndexT freelist_; variable
102 if (freelist_ == 0) { in Refill()
115 freelist_ = fillpos_ * kL2Size + start; in Refill()
118 for (uptr i = 0; i < Cache::kSize / 2 && freelist_ != 0; i++) { in Refill()
119 IndexT idx = freelist_; in Refill()
121 freelist_ = *(IndexT*)Map(idx); in Refill()
129 *(IndexT*)Map(idx) = freelist_; in Drain()
[all …]