Searched refs:bucket_rep (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dheap-profile-table.h243 return reinterpret_cast<Bucket*>(bucket_rep & ~uintptr_t(kMask));
246 void set_bucket(Bucket* b) { bucket_rep = reinterpret_cast<uintptr_t>(b); }
250 bool live() const { return bucket_rep & kLive; }
252 bucket_rep = (bucket_rep & ~uintptr_t(kLive)) | (l ? kLive : 0);
256 bool ignore() const { return bucket_rep & kIgnore; }
258 bucket_rep = (bucket_rep & ~uintptr_t(kIgnore)) | (r ? kIgnore : 0);
261 return static_cast<AllocationMark>(bucket_rep & uintptr_t(kMask));
264 bucket_rep
274 uintptr_t bucket_rep; member in struct:HeapProfileTable::AllocValue
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dheap-profile-table.h217 return reinterpret_cast<Bucket*>(bucket_rep & ~uintptr_t(kMask));
220 void set_bucket(Bucket* b) { bucket_rep = reinterpret_cast<uintptr_t>(b); }
224 bool live() const { return bucket_rep & kLive; }
226 bucket_rep = (bucket_rep & ~uintptr_t(kLive)) | (l ? kLive : 0);
230 bool ignore() const { return bucket_rep & kIgnore; }
232 bucket_rep = (bucket_rep & ~uintptr_t(kIgnore)) | (r ? kIgnore : 0);
236 // We store a few bits in the bottom bits of bucket_rep.
242 uintptr_t bucket_rep; member in struct:HeapProfileTable::AllocValue
[all...]

Completed in 229 milliseconds