Home
last modified time | relevance | path

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

/external/chromium_org/third_party/tcmalloc/vendor/src/
Dheap-profile-table.h214 struct AllocValue { struct
216 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 allocation
246 static size_t AllocValueSize(const AllocValue& v) { return v.bytes; } in AllocValueSize() argument
/external/chromium_org/third_party/tcmalloc/chromium/src/
Dheap-profile-table.h240 struct AllocValue { struct
242 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 allocation
250 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
Ddeep-heap-profile.h81 typedef HeapProfileTable::AllocValue AllocValue; typedef