OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AllocatorCache
(Results
1 - 7
of
7
) sorted by null
/external/compiler-rt/lib/msan/
msan_allocator.cc
31
typedef SizeClassAllocatorLocalCache<PrimaryAllocator>
AllocatorCache
;
33
typedef CombinedAllocator<PrimaryAllocator,
AllocatorCache
,
36
static THREADLOCAL
AllocatorCache
cache;
/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
407
<class PrimaryAllocator, class SecondaryAllocator, class
AllocatorCache
>
410
CombinedAllocator<PrimaryAllocator,
AllocatorCache
, SecondaryAllocator>
415
AllocatorCache
cache;
477
template <class
AllocatorCache
>
479
AllocatorCache
cache;
480
typedef typename
AllocatorCache
::Allocator Allocator;
529
typedef SizeClassAllocatorLocalCache<Allocator64>
AllocatorCache
;
530
static
AllocatorCache
static_allocator_cache;
533
typedef
AllocatorCache
::Allocator Allocator;
541
typedef
AllocatorCache
::Allocator Allocator
[
all
...]
/external/compiler-rt/lib/asan/
asan_allocator2.cc
80
typedef SizeClassAllocatorLocalCache<PrimaryAllocator>
AllocatorCache
;
82
typedef CombinedAllocator<PrimaryAllocator,
AllocatorCache
,
87
// static THREADLOCAL
AllocatorCache
cache;
88
AllocatorCache
*GetAllocatorCache(AsanThreadLocalMallocStorage *ms) {
90
CHECK_LE(sizeof(
AllocatorCache
), sizeof(ms->allocator2_cache));
91
return reinterpret_cast<
AllocatorCache
*>(ms->allocator2_cache);
257
static
AllocatorCache
fallback_allocator_cache;
267
explicit QuarantineCallback(
AllocatorCache
*cache)
305
AllocatorCache
*cache_;
354
AllocatorCache
*cache = GetAllocatorCache(&t->malloc_storage())
[
all
...]
/external/compiler-rt/lib/lsan/
lsan_allocator.cc
38
typedef SizeClassAllocatorLocalCache<PrimaryAllocator>
AllocatorCache
;
40
typedef CombinedAllocator<PrimaryAllocator,
AllocatorCache
,
44
static THREADLOCAL
AllocatorCache
cache;
/external/compiler-rt/lib/sanitizer_common/
sanitizer_allocator.h
309
typedef SizeClassAllocatorLocalCache<ThisT>
AllocatorCache
;
332
NOINLINE Batch* AllocateBatch(AllocatorStats *stat,
AllocatorCache
*c,
504
NOINLINE Batch* PopulateFreeList(AllocatorStats *stat,
AllocatorCache
*c,
619
typedef SizeClassAllocatorLocalCache<ThisT>
AllocatorCache
;
654
NOINLINE Batch* AllocateBatch(AllocatorStats *stat,
AllocatorCache
*c,
790
void PopulateFreeList(AllocatorStats *stat,
AllocatorCache
*c,
[
all
...]
/external/compiler-rt/lib/tsan/rtl/
tsan_rtl.h
132
typedef SizeClassAllocatorLocalCache<PrimaryAllocator>
AllocatorCache
;
134
typedef CombinedAllocator<PrimaryAllocator,
AllocatorCache
,
428
AllocatorCache
alloc_cache;
Completed in 70 milliseconds