| /frameworks/native/vulkan/libvulkan/ |
| debug_report.h | 47 const VkAllocationCallbacks& allocator); 48 void RemoveCallback(Node* node, const VkAllocationCallbacks& allocator);
|
| /hardware/google/av/codec2/vndk/bufferpool/ |
| AccessorImpl.h | 38 Impl(const std::shared_ptr<BufferPoolAllocator> &allocator); 113 /// (# of allocator alloc prevented) 247 * @param allocator the buffer allocator 256 const std::shared_ptr<BufferPoolAllocator> &allocator,
|
| /hardware/qcom/camera/msm8998/QCamera2/HAL/ |
| QCameraChannel.h | 55 virtual int32_t addStream(QCameraAllocator& allocator, 137 int32_t addReprocStreamsFromSource(QCameraAllocator& allocator,
|
| /libcore/luni/src/test/java/libcore/libcore/util/ |
| NativeAllocationRegistryTest.java | 74 NativeAllocationRegistry.Allocator allocator local 75 = new NativeAllocationRegistry.Allocator() { 81 registry.registerNativeAllocation(alloc, allocator); 168 new NativeAllocationRegistry.Allocator() { 180 new NativeAllocationRegistry.Allocator() {
|
| /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/ |
| stack.h | 28 /*! \tparam Allocator Allocator for allocating stack memory.
30 template <typename Allocator>
35 Stack(Allocator* allocator, size_t stackCapacity) : allocator_(allocator), ownAllocator_(0), stack_(0), stackTop_(0), stackEnd_(0), initialCapacity_(stackCapacity) {
99 Allocator::Free(stack_);
141 Allocator& GetAllocator() {
156 ownAllocator_ = allocator_ = RAPIDJSON_NEW(Allocator());
177 Allocator::Free(stack_); [all...] |
| /prebuilts/misc/common/swig/include/2.0.11/std/ |
| std_deque.i | 52 template<class _Tp, class _Alloc = allocator<_Tp> >
|
| std_map.i | 67 class _Alloc = allocator<std::pair<const _Key, _Tp > > >
|
| std_multimap.i | 45 class _Alloc = allocator<std::pair<const _Key, _Tp > > >
|
| std_set.i | 80 class _Alloc = allocator<_Key> >
|
| /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/ |
| 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::deque<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...] |
| /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector/ |
| types.pass.cpp | 14 // template <class T, class Allocator = allocator<T> > 19 // typedef Allocator allocator_type; 42 template <class T, class Allocator> 46 typedef std::vector<T, Allocator> C; 49 // blindly pulling typedefs out of the allocator. This is why we can't call 52 static_assert((std::is_same<typename C::value_type, typename Allocator::value_type>::value), ""); 53 static_assert((std::is_same<typename C::allocator_type, Allocator>::value), ""); 54 static_assert((std::is_same<typename C::size_type, typename Allocator::size_type>::value), ""); 55 static_assert((std::is_same<typename C::difference_type, typename Allocator::difference_type>::value), "") [all...] |
| /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.path/path.member/path.native.obs/ |
| string_alloc.pass.cpp | 17 // class Allocator = allocator<ECharT>> 18 // basic_string<ECharT, Traits, Allocator> 19 // string(const Allocator& a = Allocator()) const; 42 using Alloc = std::allocator<CharT>; 64 { // Other allocator - provided copy 69 // don't allow another allocator to be default constructed. 86 { // Default allocator 87 using Alloc = std::allocator<CharT> [all...] |
| /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/ |
| implicit_deduction_guides.pass.cpp | 32 // using A = Allocator 45 const std::allocator<int> A; 111 // using A = Allocator 122 std::allocator<int> A;
|
| /art/runtime/gc/allocator/ |
| dlmalloc.cc | 48 return ::art::gc::allocator::ArtDlMallocMoreCore(m, increment);
|
| /external/ImageMagick/Magick++/lib/ |
| Blob.cpp | 115 Magick::Blob::Allocator allocator_) 123 _blobRef->allocator=allocator_;
|
| /external/compiler-rt/lib/sanitizer_common/ |
| sanitizer_symbolizer_internal.h | 120 explicit LLVMSymbolizer(const char *path, LowLevelAllocator *allocator);
|
| /external/dng_sdk/source/ |
| dng_gain_map.h | 53 /// Construct a gain map with the specified memory allocator, number of 56 dng_gain_map (dng_memory_allocator &allocator,
|
| /external/google-breakpad/src/client/linux/minidump_writer/ |
| linux_dumper.h | 102 PageAllocator* allocator() { return &allocator_; } function in class:google_breakpad::LinuxDumper
|
| /external/libcxx/test/std/containers/sequences/list/list.cons/ |
| default.pass.cpp | 32 std::list<int> l((std::allocator<int>()));
|
| size_value_alloc.pass.cpp | 12 // list(size_type n, const T& value, const Allocator& = Allocator()); 34 std::list<int> l(3, 2, std::allocator<int>());
|
| /external/libcxx/test/std/containers/sequences/vector.bool/ |
| construct_iter_iter_alloc.pass.cpp | 40 std::allocator<bool> alloc;
|
| /external/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.mem/ |
| do_is_equal.pass.cpp | 36 typedef std::allocator<char> Alloc2; 69 // different allocator types
|
| /external/protobuf/src/google/protobuf/stubs/ |
| hash.h | 214 typename Alloc = std::allocator< std::pair<const Key, Data> > > 273 typename Alloc = std::allocator< std::pair<const Key, Data> > > 304 typename Alloc = std::allocator< std::pair<const Key, Data> > > 367 typename Alloc = std::allocator< std::pair<const Key, Data> > >
|
| /external/skia/include/core/ |
| SkBitmap.h | 47 class SK_API Allocator; 666 return this->tryAllocPixels((Allocator*)nullptr); 677 this->allocPixels((Allocator*)nullptr); 680 /** Allocates pixel memory with allocator, and replaces existing SkPixelRef. 682 If allocator is nullptr, use HeapAllocator instead. 684 Returns false if Allocator::allocPixelRef return false. 686 @param allocator instance of SkBitmap::Allocator instantiation 687 @return true if custom allocator reports success 689 bool SK_WARN_UNUSED_RESULT tryAllocPixels(Allocator* allocator) [all...] |
| /external/skqp/include/core/ |
| SkBitmap.h | 47 class SK_API Allocator; 676 return this->tryAllocPixels((Allocator*)nullptr); 687 this->allocPixels((Allocator*)nullptr); 690 /** Allocates pixel memory with allocator, and replaces existing SkPixelRef. 692 If allocator is nullptr, use HeapAllocator instead. 694 Returns false if allocator allocPixelRef return false. 696 @param allocator instance of SkBitmap::Allocator instantiation 697 @return true if custom allocator reports success 699 bool SK_WARN_UNUSED_RESULT tryAllocPixels(Allocator* allocator) [all...] |