OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:table_bytes
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/tcmalloc/chromium/src/
memory_region_map.cc
226
const int
table_bytes
= kHashTableSize * sizeof(*bucket_table_);
local
229
MyAllocator::Allocate(
table_bytes
));
231
memset(bucket_table_, 0,
table_bytes
);
[
all
...]
heap-profile-table.cc
140
const int
table_bytes
= kHashTableSize * sizeof(*bucket_table_);
local
141
bucket_table_ = static_cast<Bucket**>(alloc_(
table_bytes
));
142
memset(bucket_table_, 0,
table_bytes
);
Completed in 33 milliseconds