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

/openbsd-current/gnu/llvm/compiler-rt/lib/tsan/rtl/
H A Dtsan_sync.h134 static const u32 kFlagMask = 3u << 30; member in class:__tsan::MetaMap
137 typedef DenseSlabAlloc<MBlock, 1 << 18, 1 << 12, kFlagMask> BlockAlloc;
138 typedef DenseSlabAlloc<SyncVar, 1 << 20, 1 << 10, kFlagMask> SyncAlloc;
H A Dtsan_sync.cpp84 block_alloc_.Free(&proc->block_cache, idx & ~kFlagMask);
88 SyncVar *s = sync_alloc_.Map(idx & ~kFlagMask);
92 sync_alloc_.Free(&proc->sync_cache, idx & ~kFlagMask);
197 return block_alloc_.Map(idx & ~kFlagMask);
199 SyncVar * s = sync_alloc_.Map(idx & ~kFlagMask);
214 SyncVar * s = sync_alloc_.Map(idx & ~kFlagMask);
270 SyncVar *s = sync_alloc_.Map(idx & ~kFlagMask);

Completed in 129 milliseconds