/external/v8/src/ |
disassembler.cc | 223 HeapStringAllocator allocator; local 224 StringStream accumulator(&allocator);
|
/external/v8/test/mjsunit/ |
unbox-double-arrays.js | 58 function testOneArrayType(allocator) { 59 var large_array = new allocator(large_array_size); 253 var large_array = new allocator(large_array_size); 284 var large_array = new allocator(large_array_size);
|
/external/webkit/Source/JavaScriptCore/assembler/ |
ARMAssembler.cpp | 346 void* ARMAssembler::executableCopy(ExecutablePool* allocator) 353 char* data = reinterpret_cast<char*>(m_buffer.executableCopy(allocator));
|
/frameworks/base/libs/hwui/ |
DisplayListRenderer.h | 195 LinearAllocator& alloc() { return mDisplayListData->allocator; } 207 T* dstBuffer = (T*) mDisplayListData->allocator.alloc(count * sizeof(T));
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_pthread_alloc.h | 30 * Pthread-specific node allocator. 31 * This is similar to the default allocator, except that free-list 45 # error POSIX specific allocator implementation. Your system do not seems to \ 51 # error You cannot use per thread allocator implementation without building \ 65 // Pthread-specific allocator. 98 typedef pthread_alloc _S_Alloc; // The underlying allocator. 163 * This method do not have to be part of a user defined allocator implementation 244 //The default allocator implementation which is recognize thanks to the 272 // per_thread_allocator<> : this allocator always return memory to the same thread 278 typedef pthread_alloc _S_Alloc; // The underlying allocator [all...] |
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_pthread_alloc.h | 30 * Pthread-specific node allocator. 31 * This is similar to the default allocator, except that free-list 45 # error POSIX specific allocator implementation. Your system do not seems to \ 51 # error You cannot use per thread allocator implementation without building \ 65 // Pthread-specific allocator. 98 typedef pthread_alloc _S_Alloc; // The underlying allocator. 163 * This method do not have to be part of a user defined allocator implementation 244 //The default allocator implementation which is recognize thanks to the 272 // per_thread_allocator<> : this allocator always return memory to the same thread 278 typedef pthread_alloc _S_Alloc; // The underlying allocator [all...] |
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_pthread_alloc.h | 30 * Pthread-specific node allocator. 31 * This is similar to the default allocator, except that free-list 45 # error POSIX specific allocator implementation. Your system do not seems to \ 51 # error You cannot use per thread allocator implementation without building \ 65 // Pthread-specific allocator. 98 typedef pthread_alloc _S_Alloc; // The underlying allocator. 163 * This method do not have to be part of a user defined allocator implementation 244 //The default allocator implementation which is recognize thanks to the 272 // per_thread_allocator<> : this allocator always return memory to the same thread 278 typedef pthread_alloc _S_Alloc; // The underlying allocator [all...] |
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_pthread_alloc.h | 30 * Pthread-specific node allocator. 31 * This is similar to the default allocator, except that free-list 45 # error POSIX specific allocator implementation. Your system do not seems to \ 51 # error You cannot use per thread allocator implementation without building \ 65 // Pthread-specific allocator. 98 typedef pthread_alloc _S_Alloc; // The underlying allocator. 163 * This method do not have to be part of a user defined allocator implementation 244 //The default allocator implementation which is recognize thanks to the 272 // per_thread_allocator<> : this allocator always return memory to the same thread 278 typedef pthread_alloc _S_Alloc; // The underlying allocator [all...] |
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_pthread_alloc.h | 30 * Pthread-specific node allocator. 31 * This is similar to the default allocator, except that free-list 45 # error POSIX specific allocator implementation. Your system do not seems to \ 51 # error You cannot use per thread allocator implementation without building \ 65 // Pthread-specific allocator. 98 typedef pthread_alloc _S_Alloc; // The underlying allocator. 163 * This method do not have to be part of a user defined allocator implementation 244 //The default allocator implementation which is recognize thanks to the 272 // per_thread_allocator<> : this allocator always return memory to the same thread 278 typedef pthread_alloc _S_Alloc; // The underlying allocator [all...] |
/external/openfst/src/include/fst/ |
cache.h | 55 // A simple allocator class, can be overridden as needed, 106 typedef C Allocator; 120 explicit CacheBaseImpl(C *allocator = 0) 128 allocator_ = allocator ? allocator : new C(); 131 explicit CacheBaseImpl(const CacheOptions &opts, C *allocator = 0) 138 allocator_ = allocator ? allocator : new C(); 514 // With Default allocator, the Free and Allocate will reuse the same S*.
|
/external/stlport/stlport/stl/pointers/ |
_set.h | 41 _STLP_EXPORT_TEMPLATE_CLASS _STLP_alloc_proxy<_Rb_tree_node_base, _Node, allocator<_Node> >; 42 _STLP_EXPORT_TEMPLATE_CLASS _Rb_tree_base<void*, allocator<void*> >; 47 _SetTraitsT<void*>, allocator<void*> >; 51 _SetTraitsT<void*>, allocator<void*> >; 56 _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Key>) > 303 _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Key>) >
|
/external/webkit/Source/JavaScriptCore/wtf/ |
ListHashSet.h | 221 void* operator new(size_t, NodeAllocator* allocator) 223 return allocator->allocate(); 225 void destroy(NodeAllocator* allocator) 228 allocator->deallocate(this); 369 static void translate(Node*& location, const ValueType& key, NodeAllocator* allocator) 371 location = new (allocator) Node(key);
|
/frameworks/base/core/jni/android/graphics/ |
Bitmap.cpp | 245 JavaPixelAllocator allocator(env);
247 if (!src->copyTo(&result, dstConfig, &allocator)) {
251 return GraphicsJNI::createBitmap(env, new SkBitmap(result), allocator.getStorageObj(), isMutable, NULL, NULL);
490 JavaPixelAllocator allocator(env);
492 src->extractAlpha(dst, paint, &allocator, &offset);
507 return GraphicsJNI::createBitmap(env, dst, allocator.getStorageObj(), true, NULL, NULL);
|
/ndk/sources/cxx-stl/stlport/stlport/stl/pointers/ |
_set.h | 41 _STLP_EXPORT_TEMPLATE_CLASS _STLP_alloc_proxy<_Rb_tree_node_base, _Node, allocator<_Node> >; 42 _STLP_EXPORT_TEMPLATE_CLASS _Rb_tree_base<void*, allocator<void*> >; 47 _SetTraitsT<void*>, allocator<void*> >; 51 _SetTraitsT<void*>, allocator<void*> >; 56 _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Key>) > 303 _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Key>) >
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/pointers/ |
_set.h | 41 _STLP_EXPORT_TEMPLATE_CLASS _STLP_alloc_proxy<_Rb_tree_node_base, _Node, allocator<_Node> >; 42 _STLP_EXPORT_TEMPLATE_CLASS _Rb_tree_base<void*, allocator<void*> >; 47 _SetTraitsT<void*>, allocator<void*> >; 51 _SetTraitsT<void*>, allocator<void*> >; 56 _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Key>) > 303 _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Key>) >
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/pointers/ |
_set.h | 41 _STLP_EXPORT_TEMPLATE_CLASS _STLP_alloc_proxy<_Rb_tree_node_base, _Node, allocator<_Node> >; 42 _STLP_EXPORT_TEMPLATE_CLASS _Rb_tree_base<void*, allocator<void*> >; 47 _SetTraitsT<void*>, allocator<void*> >; 51 _SetTraitsT<void*>, allocator<void*> >; 56 _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Key>) > 303 _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Key>) >
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/pointers/ |
_set.h | 41 _STLP_EXPORT_TEMPLATE_CLASS _STLP_alloc_proxy<_Rb_tree_node_base, _Node, allocator<_Node> >; 42 _STLP_EXPORT_TEMPLATE_CLASS _Rb_tree_base<void*, allocator<void*> >; 47 _SetTraitsT<void*>, allocator<void*> >; 51 _SetTraitsT<void*>, allocator<void*> >; 56 _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Key>) > 303 _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Key>) >
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/pointers/ |
_set.h | 41 _STLP_EXPORT_TEMPLATE_CLASS _STLP_alloc_proxy<_Rb_tree_node_base, _Node, allocator<_Node> >; 42 _STLP_EXPORT_TEMPLATE_CLASS _Rb_tree_base<void*, allocator<void*> >; 47 _SetTraitsT<void*>, allocator<void*> >; 51 _SetTraitsT<void*>, allocator<void*> >; 56 _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Key>) > 303 _STLP_DFL_TMPL_PARAM(_Alloc, allocator<_Key>) >
|
/external/skia/legacy/src/core/ |
SkBitmap.cpp | 362 bool SkBitmap::allocPixels(Allocator* allocator, SkColorTable* ctable) { 365 if (NULL == allocator) { 366 allocator = &stdalloc; 368 return allocator->allocPixelRef(this, ctable); 426 /** We explicitly use the same allocator for our pixels that SkMask does, 875 bool SkBitmap::copyTo(SkBitmap* dst, Config dstConfig, Allocator* alloc) const { 917 // allocator/lock failed [all...] |
/external/skia/src/core/ |
SkBitmap.cpp | 25 SK_DEFINE_INST_COUNT(SkBitmap::Allocator) 379 bool SkBitmap::allocPixels(Allocator* allocator, SkColorTable* ctable) { 382 if (NULL == allocator) { 383 allocator = &stdalloc; 385 return allocator->allocPixelRef(this, ctable); 433 /** We explicitly use the same allocator for our pixels that SkMask does, 1026 bool SkBitmap::copyTo(SkBitmap* dst, Config dstConfig, Allocator* alloc) const { 1077 // allocator/lock failed [all...] |
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/ |
assoc_container.hpp | 88 * @tparam _Alloc Allocator type. 190 * @tparam _Alloc Allocator type. 203 typename _Alloc = std::allocator<char> > 353 * @tparam _Alloc Allocator type. 367 typename _Alloc = std::allocator<char> > 545 * @tparam _Alloc Allocator type. 623 * @tparam _Alloc Allocator type. 634 typename _Alloc = std::allocator<char> > 714 * @tparam _Alloc Allocator type. 730 typename _Alloc = std::allocator<char> [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
shared_ptr.h | 67 // counted ptr with no deleter or allocator support 95 // support for custom deleter and/or allocator 103 // Helper class that stores the Deleter and also acts as an allocator. 189 // override because the allocator needs to know the dynamic type 242 // allocator's value_type doesn't matter, will rebind it anyway 243 typedef std::allocator<int> _Alloc; 245 typedef std::allocator<_Sp_cd_type> _Alloc2; 391 return new _Sp_counted_deleter<_Tp*, _Del, std::allocator<_Tp>, 402 return new _Sp_counted_deleter<_Tp*, _Del2, std::allocator<_Tp>, 608 * @param __a An allocator [all...] |
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
shared_ptr.h | 67 // counted ptr with no deleter or allocator support 95 // support for custom deleter and/or allocator 103 // Helper class that stores the Deleter and also acts as an allocator. 189 // override because the allocator needs to know the dynamic type 242 // allocator's value_type doesn't matter, will rebind it anyway 243 typedef std::allocator<int> _Alloc; 245 typedef std::allocator<_Sp_cd_type> _Alloc2; 391 return new _Sp_counted_deleter<_Tp*, _Del, std::allocator<_Tp>, 402 return new _Sp_counted_deleter<_Tp*, _Del2, std::allocator<_Tp>, 608 * @param __a An allocator [all...] |
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
shared_ptr.h | 67 // counted ptr with no deleter or allocator support 95 // support for custom deleter and/or allocator 103 // Helper class that stores the Deleter and also acts as an allocator. 189 // override because the allocator needs to know the dynamic type 242 // allocator's value_type doesn't matter, will rebind it anyway 243 typedef std::allocator<int> _Alloc; 245 typedef std::allocator<_Sp_cd_type> _Alloc2; 391 return new _Sp_counted_deleter<_Tp*, _Del, std::allocator<_Tp>, 402 return new _Sp_counted_deleter<_Tp*, _Del2, std::allocator<_Tp>, 608 * @param __a An allocator [all...] |
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/ |
shared_ptr.h | 67 // counted ptr with no deleter or allocator support 95 // support for custom deleter and/or allocator 103 // Helper class that stores the Deleter and also acts as an allocator. 189 // override because the allocator needs to know the dynamic type 242 // allocator's value_type doesn't matter, will rebind it anyway 243 typedef std::allocator<int> _Alloc; 245 typedef std::allocator<_Sp_cd_type> _Alloc2; 391 return new _Sp_counted_deleter<_Tp*, _Del, std::allocator<_Tp>, 402 return new _Sp_counted_deleter<_Tp*, _Del2, std::allocator<_Tp>, 608 * @param __a An allocator [all...] |