OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:thread_heaps_
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/tcmalloc/vendor/src/
thread_cache.cc
62
ThreadCache* ThreadCache::
thread_heaps_
= NULL;
member in class:tcmalloc::ThreadCache
291
ASSERT(
thread_heaps_
!= NULL);
292
next_memory_steal_ =
thread_heaps_
;
329
for (ThreadCache* h =
thread_heaps_
; h != NULL; h = h->next_) {
363
for (ThreadCache* h =
thread_heaps_
; h != NULL; h = h->next_) {
393
heap->next_ =
thread_heaps_
;
395
if (
thread_heaps_
!= NULL) {
396
thread_heaps_
->prev_ = heap;
402
thread_heaps_
= heap;
450
if (
thread_heaps_
== heap) thread_heaps_ = heap->next_
[
all
...]
thread_cache.h
271
static ThreadCache*
thread_heaps_
;
member in class:tcmalloc::ThreadCache
274
// A pointer to one of the objects in
thread_heaps_
. Represents
277
//
thread_heaps_
. Protected by Static::pageheap_lock.
/external/chromium_org/third_party/tcmalloc/chromium/src/
thread_cache.cc
62
ThreadCache* ThreadCache::
thread_heaps_
= NULL;
member in class:tcmalloc::ThreadCache
297
ASSERT(
thread_heaps_
!= NULL);
298
next_memory_steal_ =
thread_heaps_
;
340
for (ThreadCache* h =
thread_heaps_
; h != NULL; h = h->next_) {
374
for (ThreadCache* h =
thread_heaps_
; h != NULL; h = h->next_) {
404
heap->next_ =
thread_heaps_
;
406
if (
thread_heaps_
!= NULL) {
407
thread_heaps_
->prev_ = heap;
413
thread_heaps_
= heap;
461
if (
thread_heaps_
== heap) thread_heaps_ = heap->next_
[
all
...]
thread_cache.h
286
static ThreadCache*
thread_heaps_
;
member in class:tcmalloc::ThreadCache
289
// A pointer to one of the objects in
thread_heaps_
. Represents
292
//
thread_heaps_
. Protected by Static::pageheap_lock.
Completed in 186 milliseconds