Home
last modified time | relevance | path

Searched defs:StackDepotNode (Results 1 – 1 of 1) sorted by relevance

/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_stackdepot.cc46 struct StackDepotNode { struct
47 StackDepotNode *link;
48 u32 id;
49 atomic_uint32_t hash_and_use_count; // hash_bits : 12; use_count : 20;
50 uptr size;
51 uptr stack[1]; // [size]
53 static const u32 kTabSizeLog = 20;
56 static const u32 kUseCountBits = kTabSizeLog;
57 static const u32 kMaxUseCount = 1 << kUseCountBits;
58 static const u32 kUseCountMask = (1 << kUseCountBits) - 1;
[all …]