OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HeapProfileBucket
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/tcmalloc/chromium/src/
heap-profile-stats.h
11
// which is declared as "
HeapProfileBucket
**".
15
// are implemented with the member "
HeapProfileBucket
* next".
17
// A structure of a hash table
HeapProfileBucket
** bucket_table would be like:
19
// bucket_table[1] =>
HeapProfileBucket
() =>
HeapProfileBucket
() => NULL
21
// bucket_table[i] =>
HeapProfileBucket
() => NULL
23
// bucket_table[n] =>
HeapProfileBucket
() => NULL
42
struct
HeapProfileBucket
: public HeapProfileStats {
49
HeapProfileBucket
* next; // Next entry in hash-table.
memory_region_map.h
232
static void IterateBuckets(void (*callback)(const
HeapProfileBucket
*, Type),
239
static
HeapProfileBucket
* GetBucket(int depth, const void* const key[]);
323
static
HeapProfileBucket
** bucket_table_ GUARDED_BY(lock_);
342
static
HeapProfileBucket
saved_buckets_[20] GUARDED_BY(lock_);
405
void (*callback)(const
HeapProfileBucket
*, Type), Type callback_arg) {
407
for (
HeapProfileBucket
* bucket = bucket_table_[index];
memory_region_map.cc
151
HeapProfileBucket
** MemoryRegionMap::bucket_table_ = NULL; // GUARDED_BY(lock_)
154
HeapProfileBucket
MemoryRegionMap::saved_buckets_[20]; // GUARDED_BY(lock_)
228
bucket_table_ = static_cast<
HeapProfileBucket
**>(
252
for (
HeapProfileBucket
* curr = bucket_table_[i]; curr != 0; /**/) {
253
HeapProfileBucket
* bucket = curr;
376
HeapProfileBucket
* MemoryRegionMap::GetBucket(int depth,
391
for (
HeapProfileBucket
* bucket = bucket_table_[hash_index];
402
HeapProfileBucket
* bucket;
418
bucket = static_cast<
HeapProfileBucket
*>(
419
MyAllocator::Allocate(sizeof(
HeapProfileBucket
)));
[
all
...]
heap-profile-table.h
237
typedef
HeapProfileBucket
Bucket;
Completed in 944 milliseconds