| /external/llvm/unittests/ADT/ |
| IntervalMapTest.cpp | 21 UUMap::Allocator allocator; local 22 UUMap map(allocator); 55 UUMap::Allocator allocator; local 56 UUMap map(allocator); 142 UUMap::Allocator allocator; local 143 UUMap map(allocator); 212 UUMap::Allocator allocator local 326 UUMap::Allocator allocator; local 469 UUMap::Allocator allocator; local 545 UUMap::Allocator allocator; local 569 UUMap::Allocator allocator; local 613 UUMap::Allocator allocator; local [all...] |
| /external/skia/src/images/ |
| SkDecodingImageGenerator.cpp | 54 * Special allocator used by getPixels(). Uses preallocated memory 55 * provided if possible, else fall-back on the default allocator 57 class TargetAllocator : public SkBitmap::Allocator { 71 // Call default allocator. 91 typedef SkBitmap::Allocator INHERITED; 174 TargetAllocator allocator(fInfo, pixels, rowBytes); 175 decoder->setAllocator(&allocator); 182 if (allocator.isReady()) { // Did not use pixels! 185 bool copySuccess = bitmap.copyTo(&bm, info.colorType(), &allocator); 186 if (!copySuccess || allocator.isReady()) [all...] |
| /art/compiler/optimizing/ |
| code_generator.h | 73 void CompileBaseline(CodeAllocator* allocator, bool is_leaf = false); 74 void CompileOptimized(CodeAllocator* allocator); 75 static CodeGenerator* Create(ArenaAllocator* allocator,
|
| code_generator.cc | 33 void CodeGenerator::CompileBaseline(CodeAllocator* allocator, bool is_leaf) { 64 uint8_t* buffer = allocator->Allocate(code_size); 69 void CodeGenerator::CompileOptimized(CodeAllocator* allocator) { 90 uint8_t* buffer = allocator->Allocate(code_size); 254 CodeGenerator* CodeGenerator::Create(ArenaAllocator* allocator, 260 return new (allocator) arm::CodeGeneratorARM(graph); 265 return new (allocator) x86::CodeGeneratorX86(graph); 268 return new (allocator) x86_64::CodeGeneratorX86_64(graph);
|
| pretty_printer_test.cc | 32 ArenaAllocator allocator(&pool); 33 HGraphBuilder builder(&allocator);
|
| register_allocator.h | 36 * An implementation of a linear scan register allocator on an `HGraph` with SSA form. 40 RegisterAllocator(ArenaAllocator* allocator, 44 // Main entry point for the register allocator. Given the liveness analysis, 48 // Validate that the register allocator did not allocate the same register to 63 ArenaAllocator* allocator, 80 // Main methods of the allocator.
|
| /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ |
| ImageFrame.h | 121 SkBitmap::Allocator* allocator() const { return m_allocator; } 141 void setMemoryAllocator(SkBitmap::Allocator* allocator) { m_allocator = allocator; } 219 SkBitmap::Allocator* m_allocator;
|
| /external/chromium_org/third_party/skia/src/gpu/ |
| SkGrPixelRef.cpp | 154 SkBitmap::Allocator* allocator = SkBitmapCache::GetAllocator(); local 155 if (NULL != allocator) { 156 return allocator->allocPixelRef(bitmap, 0); 158 // DiscardableMemory is not available, fallback to default allocator
|
| /external/clang/test/Analysis/Inputs/ |
| system-header-simulator-cxx.h | 121 class allocator { class in namespace:std 140 template <class _Tp, class _Alloc = allocator<_Tp> > 156 template<class _CharT, class _Alloc = allocator<_CharT> >
|
| /device/moto/shamu/camera/QCamera2/HAL/ |
| QCameraChannel.h | 53 virtual int32_t addStream(QCameraAllocator& allocator, 120 int32_t addReprocStreamsFromSource(QCameraAllocator& allocator,
|
| /external/chromium_org/gin/ |
| per_isolate_data.cc | 21 ArrayBuffer::Allocator* allocator) 23 allocator_(allocator),
|
| /external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
| rawtransport.cc | 46 PortAllocator* allocator) 48 content_name, NS_GINGLE_RAW, allocator) {
|
| /external/chromium_org/third_party/libjingle/source/talk/p2p/client/ |
| basicportallocator.cc | 236 BasicPortAllocator *allocator, 242 ice_ufrag, ice_pwd, allocator->flags()), 243 allocator_(allocator), network_thread_(NULL), 244 socket_factory_(allocator->socket_factory()), 511 LOG_J(LS_INFO, port) << "Added port to allocator"; 678 LOG_J(LS_INFO, port) << "Removed port from allocator (" 760 rtc::SocketAddress(ip_, 0), session_->allocator()->min_port(), 761 session_->allocator()->max_port())); 867 session_->allocator()->step_delay(), 911 session_->allocator()->min_port() [all...] |
| /external/libcxx/test/containers/sequences/vector/ |
| types.pass.cpp | 14 // template <class T, class Allocator = allocator<T> > 19 // typedef Allocator allocator_type; 40 template <class T, class Allocator> 44 typedef std::vector<T, Allocator> C; 47 static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), ""); 48 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), ""); 49 static_assert((std::is_same<typename C::size_type, typename Allocator::size_type>::value), ""); 50 static_assert((std::is_same<typename C::difference_type, typename Allocator::difference_type>::value), ""); 51 static_assert((std::is_same<typename C::reference, typename Allocator::reference>::value), "") [all...] |
| /external/libcxx/test/strings/basic.string/ |
| types.pass.cpp | 15 // class Allocator = allocator<charT> > 21 // typedef Allocator allocator_type; 22 // typedef typename Allocator::size_type size_type; 23 // typedef typename Allocator::difference_type difference_type; 24 // typedef typename Allocator::reference reference; 25 // typedef typename Allocator::const_reference const_reference; 26 // typedef typename Allocator::pointer pointer; 27 // typedef typename Allocator::const_pointer const_pointer; 43 template <class Traits, class Allocator> [all...] |
| /external/libcxx/test/utilities/memory/default.allocator/allocator.members/ |
| construct.pass.cpp | 12 // allocator: 80 std::allocator<A> a; 125 std::allocator<move_only> a;
|
| /external/stlport/test/unit/ |
| allocator_test.cpp | 40 typedef allocator<char> CharAllocator; 58 typedef allocator<BigStruct> BigStructAllocType;
|
| bitset_test.cpp | 67 string representation = b2.to_string<char, char_traits<char>, allocator<char> >(); 70 wstring wrepresentation = b2.to_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >();
|
| /frameworks/base/libs/hwui/ |
| DeferredDisplayList.h | 51 static void* operator new(size_t size, LinearAllocator& allocator) { 52 return allocator.alloc(size); 82 friend class DeferStateStruct; // used to give access to allocator
|
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector/ |
| types.pass.cpp | 14 // template <class T, class Allocator = allocator<T> > 19 // typedef Allocator allocator_type; 40 template <class T, class Allocator> 44 typedef std::vector<T, Allocator> C; 47 static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), ""); 48 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), ""); 49 static_assert((std::is_same<typename C::size_type, typename Allocator::size_type>::value), ""); 50 static_assert((std::is_same<typename C::difference_type, typename Allocator::difference_type>::value), ""); 51 static_assert((std::is_same<typename C::reference, typename Allocator::reference>::value), "") [all...] |
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/ |
| types.pass.cpp | 15 // class Allocator = allocator<charT> > 21 // typedef Allocator allocator_type; 22 // typedef typename Allocator::size_type size_type; 23 // typedef typename Allocator::difference_type difference_type; 24 // typedef typename Allocator::reference reference; 25 // typedef typename Allocator::const_reference const_reference; 26 // typedef typename Allocator::pointer pointer; 27 // typedef typename Allocator::const_pointer const_pointer; 43 template <class Traits, class Allocator> [all...] |
| /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/default.allocator/allocator.members/ |
| construct.pass.cpp | 12 // allocator: 80 std::allocator<A> a; 125 std::allocator<move_only> a;
|
| /ndk/tests/device/test-gnustl-full/unit/ |
| allocator_test.cpp | 40 typedef allocator<char> CharAllocator; 58 typedef allocator<BigStruct> BigStructAllocType;
|
| bitset_test.cpp | 67 string representation = b2.to_string<char, char_traits<char>, allocator<char> >(); 70 wstring wrepresentation = b2.to_string<wchar_t, char_traits<wchar_t>, allocator<wchar_t> >();
|
| /ndk/tests/device/test-stlport/unit/ |
| allocator_test.cpp | 40 typedef allocator<char> CharAllocator; 58 typedef allocator<BigStruct> BigStructAllocType;
|