| /art/runtime/entrypoints/quick/ |
| quick_alloc_entrypoints.h | 36 void SetQuickAllocEntryPointsAllocator(gc::AllocatorType allocator)
|
| /external/chromium_org/base/allocator/ |
| allocator_extension.h | 10 #include "base/allocator/allocator_extension_thunks.h" 15 namespace allocator { namespace in namespace:base 17 // Request the allocator to report value of its waste memory size. 26 // Request that the allocator print a human-readable description of the current 27 // state of the allocator into a null-terminated string in the memory segment 34 // Request that the allocator release any free memory it knows about to the 39 // These settings allow specifying a callback used to implement the allocator 41 // once. These will typically called in an allocator-specific initialization 56 } // namespace allocator
|
| allocator_extension_thunks.h | 11 namespace allocator { namespace in namespace:base 15 // new allocator extension from a specific allocator implementation to base. 33 } // namespace allocator
|
| /external/chromium_org/third_party/WebKit/Source/platform/ |
| PODFreeListArena.h | 41 // Creates a new PODFreeListArena configured with the given Allocator. 42 static PassRefPtr<PODFreeListArena> create(PassRefPtr<PODArena::Allocator> allocator) 44 return adoptRef(new PODFreeListArena(allocator)); 88 explicit PODFreeListArena(PassRefPtr<PODArena::Allocator> allocator) 89 : m_arena(PODArena::create(allocator)), m_freeList(0) { }
|
| /external/chromium_org/third_party/skia/src/core/ |
| SkBlitter_Sprite.cpp | 52 const SkBitmap& source, int left, int top, SkTBlitterAllocator* allocator) { 62 SkASSERT(allocator != NULL); 68 blitter = SkSpriteBlitter::ChooseD16(source, paint, allocator); 71 blitter = SkSpriteBlitter::ChooseD32(source, paint, allocator);
|
| SkDrawLooper.cpp | 17 SkSmallAllocator<1, 32> allocator; local 18 void* buffer = allocator.reserveT<SkDrawLooper::Context>(this->contextSize()); 38 SkSmallAllocator<1, 32> allocator; local 39 void* buffer = allocator.reserveT<SkDrawLooper::Context>(this->contextSize());
|
| /external/chromium_org/third_party/skia/src/utils/ |
| SkTextureCompressor_ASTC.h | 21 SkTBlitterAllocator *allocator);
|
| SkTextureCompressor_LATC.h | 21 SkTBlitterAllocator *allocator);
|
| SkTextureCompressor_R11EAC.h | 21 SkTBlitterAllocator* allocator);
|
| /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.def/ |
| p8.cpp | 79 template <class Tp> class allocator; 82 class allocator<void> class in namespace:redecl::n1 89 class allocator class in namespace:redecl::n1 94 void allocate(allocator<void>::const_pointer = 0);
|
| /external/clang/test/CodeGenCXX/ |
| lpad-linetable.cpp | 14 class allocator class in namespace:std 19 { typedef allocator<_Tp1> other; }; 20 ~allocator() throw() { } 37 template<typename _Tp, typename _Alloc = std::allocator<_Tp> >
|
| /external/compiler-rt/lib/lsan/ |
| lsan_allocator.cc | 43 SecondaryAllocator> Allocator; 45 static Allocator allocator; member in namespace:__lsan 49 allocator.Init(); 53 allocator.SwallowCache(&cache); 57 return reinterpret_cast<ChunkMetadata *>(allocator.GetMetaData(p)); 85 void *p = allocator.Allocate(&cache, size, alignment, false); 86 // Do not rely on the allocator to clear the memory (it's slow). 87 if (cleared && allocator.FromPrimary(p)) 95 allocator.Deallocate(&cache, p) [all...] |
| /external/libcxx/test/re/re.results/re.results.const/ |
| default.pass.cpp | 12 // class match_results<BidirectionalIterator, Allocator> 14 // match_results(const Allocator& a = Allocator()); 26 assert(m.get_allocator() == std::allocator<std::sub_match<const CharT*> >());
|
| /external/libcxx/test/utilities/memory/default.allocator/allocator.members/ |
| address.pass.cpp | 12 // allocator: 24 const std::allocator<T> a;
|
| max_size.pass.cpp | 12 // allocator: 24 const std::allocator<int> a;
|
| /external/skia/src/core/ |
| SkBlitter_Sprite.cpp | 52 const SkBitmap& source, int left, int top, SkTBlitterAllocator* allocator) { 62 SkASSERT(allocator != NULL); 68 blitter = SkSpriteBlitter::ChooseD16(source, paint, allocator); 71 blitter = SkSpriteBlitter::ChooseD32(source, paint, allocator);
|
| SkDrawLooper.cpp | 17 SkSmallAllocator<1, 32> allocator; local 18 void* buffer = allocator.reserveT<SkDrawLooper::Context>(this->contextSize()); 38 SkSmallAllocator<1, 32> allocator; local 39 void* buffer = allocator.reserveT<SkDrawLooper::Context>(this->contextSize());
|
| /external/valgrind/main/drd/tests/ |
| custom_alloc_fiw.stderr.exp | 2 --free-is-write=yes is incompatible with custom memory allocator client requests 6 --free-is-write=yes is incompatible with custom memory allocator client requests
|
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.results/re.results.const/ |
| default.pass.cpp | 12 // class match_results<BidirectionalIterator, Allocator> 14 // match_results(const Allocator& a = Allocator()); 26 assert(m.get_allocator() == std::allocator<std::sub_match<const CharT*> >());
|
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.members/ |
| address.pass.cpp | 12 // allocator: 24 const std::allocator<T> a;
|
| max_size.pass.cpp | 12 // allocator: 24 const std::allocator<int> a;
|
| /external/chromium_org/third_party/WebKit/Source/wtf/text/ |
| StringImplCF.cpp | 51 return CFSTR("WTF::String-based allocator"); 107 // allocator that are mutable, and those typically are only created by callers who 108 // make a new string using the old string's allocator, such as some of the call 119 static CFAllocatorRef allocator() function in namespace:WTF::StringWrapperCFAllocator 121 static CFAllocatorRef allocator = create(); local 122 return allocator; 136 CFAllocatorRef allocator = StringWrapperCFAllocator::allocator(); local 138 // Put pointer to the StringImpl in a global so the allocator can store it with the CFString. 144 string = CFStringCreateWithBytesNoCopy(allocator, reinterpret_cast<const UInt8*>(characters8()), m_length, kCFStringEncodingISOLatin1, false, kCFAl (…) [all...] |
| /external/stlport/src/ |
| locale_impl.h | 35 _STLP_EXPORT_TEMPLATE_CLASS allocator<locale::facet*>; variable 39 _STLP_EXPORT_TEMPLATE_CLASS _STLP_alloc_proxy<locale::facet**, locale::facet*, allocator<locale::facet*> >; 40 _STLP_EXPORT_TEMPLATE_CLASS _Vector_base<locale::facet*, allocator<locale::facet*> >; 47 _STLP_EXPORT_TEMPLATE_CLASS __construct_checker<_STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> > >; 48 _STLP_EXPORT_TEMPLATE_CLASS _STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> >; 53 _STLP_EXPORT_TEMPLATE_CLASS vector<locale::facet*, allocator<locale::facet*> >; 72 basic_string<char, char_traits<char>, allocator<char> > name;
|
| /ndk/sources/cxx-stl/stlport/src/ |
| locale_impl.h | 35 _STLP_EXPORT_TEMPLATE_CLASS allocator<locale::facet*>; variable 39 _STLP_EXPORT_TEMPLATE_CLASS _STLP_alloc_proxy<locale::facet**, locale::facet*, allocator<locale::facet*> >; 40 _STLP_EXPORT_TEMPLATE_CLASS _Vector_base<locale::facet*, allocator<locale::facet*> >; 47 _STLP_EXPORT_TEMPLATE_CLASS __construct_checker<_STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> > >; 48 _STLP_EXPORT_TEMPLATE_CLASS _STLP_NON_DBG_VECTOR<locale::facet*, allocator<locale::facet*> >; 53 _STLP_EXPORT_TEMPLATE_CLASS vector<locale::facet*, allocator<locale::facet*> >; 72 basic_string<char, char_traits<char>, allocator<char> > name;
|
| /external/chromium_org/third_party/angle/src/compiler/translator/ |
| PoolAlloc.h | 15 // This header defines an allocator that can be used to efficiently 27 // Individual classes can use this allocator by supplying their own 30 // STL containers can use this allocator by using the pool_allocator 31 // class as the allocator (second) template argument. 220 // with everyone using the same global allocator. 226 // This STL compatible allocator is intended to be used as the allocator 250 pool_allocator() : allocator(GetGlobalPoolAllocator()) { } 251 pool_allocator(TPoolAllocator& a) : allocator(&a) { } 252 pool_allocator(const pool_allocator<T>& p) : allocator(p.allocator) { 297 TPoolAllocator* allocator; member in class:pool_allocator [all...] |