Searched defs:StackDepotNode (Results 1 – 1 of 1) sorted by relevance
21 struct StackDepotNode { struct22 StackDepotNode *link;23 u32 id;24 atomic_uint32_t hash_and_use_count; // hash_bits : 12; use_count : 20;25 u32 size;26 u32 tag;27 uptr stack[1]; // [size]29 static const u32 kTabSizeLog = 20;32 static const u32 kUseCountBits = kTabSizeLog;33 static const u32 kMaxUseCount = 1 << kUseCountBits;[all …]