Searched defs:kHashTableSize (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dstack_trace_table.h81 static const int kHashTableSize = 1 << 14; // => table_ is 128k member in class:tcmalloc::StackTraceTable
H A Dmemory_region_map.h78 static const int kHashTableSize = 179999; member in class:MemoryRegionMap
406 for (int index = 0; index < kHashTableSize; index++) {
H A Ddeep-heap-profile.cc42 static const int kHashTableSize = 179999; // Same as heap-profile-table.cc. variable
310 deep_table_(kHashTableSize, heap_profile->alloc_, heap_profile->dealloc_),
H A Dheap-profile-table.cc105 static const int kHashTableSize = 179999; // Size for bucket_table_. variable
140 const int table_bytes = kHashTableSize * sizeof(*bucket_table_);
160 for (int i = 0; i < kHashTableSize; i++) {
185 unsigned int buck = ((unsigned int) h) % kHashTableSize;
340 for (int i = 0; i < kHashTableSize; i++) {
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Dstack_trace_table.h81 static const int kHashTableSize = 1 << 14; // => table_ is 128k member in class:tcmalloc::StackTraceTable
H A Dheap-profile-table.cc103 static const int kHashTableSize = 179999; variable
131 const int alloc_table_bytes = kHashTableSize * sizeof(*alloc_table_);
166 for (int b = 0; b < kHashTableSize; b++) {
192 unsigned int buck = ((unsigned int) h) % kHashTableSize;
336 for (int b = 0; b < kHashTableSize; b++) {
344 for (int b = 0; b < kHashTableSize; b++) {
360 static const int mmap_table_bytes = kHashTableSize * sizeof(*mmap_table_);

Completed in 2200 milliseconds