OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bucket_rep
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/tcmalloc/chromium/src/
heap-profile-table.h
243
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
= (bucket_rep & ~uintptr_t(kMask)) | uintptr_t(mark)
274
uintptr_t
bucket_rep
;
member in struct:HeapProfileTable::AllocValue
[
all
...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
heap-profile-table.h
217
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 41 milliseconds