OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AllocatorCache
(Results
1 - 7
of
7
) sorted by null
/external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_testlib.cc
41
typedef SizeClassAllocatorLocalCache<PrimaryAllocator>
AllocatorCache
;
43
typedef CombinedAllocator<PrimaryAllocator,
AllocatorCache
,
48
static THREADLOCAL
AllocatorCache
cache;
sanitizer_allocator_test.cc
410
<class PrimaryAllocator, class SecondaryAllocator, class
AllocatorCache
>
413
CombinedAllocator<PrimaryAllocator,
AllocatorCache
, SecondaryAllocator>
418
AllocatorCache
cache;
490
template <class
AllocatorCache
>
492
AllocatorCache
cache;
493
typedef typename
AllocatorCache
::Allocator Allocator;
542
typedef SizeClassAllocatorLocalCache<Allocator64>
AllocatorCache
;
543
static
AllocatorCache
static_allocator_cache;
546
typedef
AllocatorCache
::Allocator Allocator;
554
typedef
AllocatorCache
::Allocator Allocator
[
all
...]
/external/compiler-rt/lib/asan/
asan_allocator.h
127
typedef SizeClassAllocatorLocalCache<PrimaryAllocator>
AllocatorCache
;
129
typedef CombinedAllocator<PrimaryAllocator,
AllocatorCache
,
135
AllocatorCache
allocator2_cache;
/external/compiler-rt/lib/lsan/
lsan_allocator.cc
40
typedef SizeClassAllocatorLocalCache<PrimaryAllocator>
AllocatorCache
;
42
typedef CombinedAllocator<PrimaryAllocator,
AllocatorCache
,
46
static THREADLOCAL
AllocatorCache
cache;
/external/compiler-rt/lib/msan/
msan_allocator.cc
51
typedef SizeClassAllocatorLocalCache<PrimaryAllocator>
AllocatorCache
;
53
typedef CombinedAllocator<PrimaryAllocator,
AllocatorCache
,
57
static
AllocatorCache
fallback_allocator_cache;
69
AllocatorCache
*GetAllocatorCache(MsanThreadLocalMallocStorage *ms) {
71
CHECK_LE(sizeof(
AllocatorCache
), sizeof(ms->allocator_cache));
72
return reinterpret_cast<
AllocatorCache
*>(ms->allocator_cache);
90
AllocatorCache
*cache = GetAllocatorCache(&t->malloc_storage());
94
AllocatorCache
*cache = &fallback_allocator_cache;
137
AllocatorCache
*cache = GetAllocatorCache(&t->malloc_storage());
141
AllocatorCache
*cache = &fallback_allocator_cache
[
all
...]
/external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h
318
typedef SizeClassAllocatorLocalCache<ThisT>
AllocatorCache
;
341
NOINLINE Batch* AllocateBatch(AllocatorStats *stat,
AllocatorCache
*c,
513
NOINLINE Batch* PopulateFreeList(AllocatorStats *stat,
AllocatorCache
*c,
690
typedef SizeClassAllocatorLocalCache<ThisT>
AllocatorCache
;
725
NOINLINE Batch* AllocateBatch(AllocatorStats *stat,
AllocatorCache
*c,
861
void PopulateFreeList(AllocatorStats *stat,
AllocatorCache
*c,
[
all
...]
/external/compiler-rt/lib/tsan/rtl/
tsan_rtl.h
66
typedef SizeClassAllocatorLocalCache<PrimaryAllocator>
AllocatorCache
;
68
typedef CombinedAllocator<PrimaryAllocator,
AllocatorCache
,
353
AllocatorCache
alloc_cache;
Completed in 480 milliseconds