Searched defs:AllocValue (Results 1 – 3 of 3) sorted by relevance
214 struct AllocValue { struct216 Bucket* bucket() const { in bucket()220 void set_bucket(Bucket* b) { bucket_rep = reinterpret_cast<uintptr_t>(b); } in set_bucket()221 size_t bytes; // Number of bytes in this allocation246 static size_t AllocValueSize(const AllocValue& v) { return v.bytes; } in AllocValueSize() argument
240 struct AllocValue { struct242 Bucket* bucket() const { in bucket()246 void set_bucket(Bucket* b) { bucket_rep = reinterpret_cast<uintptr_t>(b); } in set_bucket()247 size_t bytes; // Number of bytes in this allocation250 bool live() const { return bucket_rep & kLive; } in live()251 void set_live(bool l) { in set_live()278 static size_t AllocValueSize(const AllocValue& v) { return v.bytes; } in AllocValueSize() argument
81 typedef HeapProfileTable::AllocValue AllocValue; typedef