Searched defs:StackDepotNode (Results 1 – 1 of 1) sorted by relevance
46 struct StackDepotNode { struct47 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 …]