OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:kHashTableSize
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/tcmalloc/chromium/src/
stack_trace_table.h
81
static const int
kHashTableSize
= 1 << 14; // => table_ is 128k
memory_region_map.h
78
static const int
kHashTableSize
= 179999;
406
for (int index = 0; index <
kHashTableSize
; index++) {
heap-profile-table.cc
105
static const int
kHashTableSize
= 179999; // Size for bucket_table_.
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++) {
deep-heap-profile.cc
42
static const int
kHashTableSize
= 179999; // Same as heap-profile-table.cc.
311
deep_table_(
kHashTableSize
, heap_profile->alloc_, heap_profile->dealloc_),
[
all
...]
/external/chromium_org/third_party/tcmalloc/vendor/src/
stack_trace_table.h
81
static const int
kHashTableSize
= 1 << 14; // => table_ is 128k
heap-profile-table.cc
103
static const int
kHashTableSize
= 179999;
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 418 milliseconds