| /external/dng_sdk/source/ |
| dng_area_task.h | 130 /// \param allocator dng_memory_allocator to use for allocating temporary buffers, etc. 135 dng_memory_allocator *allocator, 142 /// There is no allocator parameter as all allocation should be done in Start. 184 /// \param allocator dng_memory_allocator to use for allocating temporary buffers, etc. 189 dng_memory_allocator *allocator,
|
| /external/gemmlowp/internal/ |
| single_thread_gemm.h | 25 #include "allocator.h" 43 Allocator* allocator() { return &allocator_; } function in class:gemmlowp::SingleThreadGemmContext 54 Allocator allocator_; 89 Allocator* allocator = context->allocator(); local 115 PackedSideBlock<typename KernelFormat::Lhs> packed_lhs(Side::Lhs, allocator, 117 PackedSideBlock<typename KernelFormat::Rhs> packed_rhs(Side::Rhs, allocator, 120 PackedResult packed_result(allocator, block_params) [all...] |
| /external/libcxx/test/std/utilities/memory/allocator.traits/allocator.traits.members/ |
| max_size.pass.cpp | 73 std::allocator<int> a; 74 static_assert(noexcept(std::allocator_traits<std::allocator<int>>::max_size(a)) == true, "");
|
| /external/tensorflow/tensorflow/compiler/xla/client/ |
| executable_build_options.cc | 24 DeviceMemoryAllocator* allocator) { 25 device_allocator_ = allocator;
|
| /external/tensorflow/tensorflow/compiler/xla/service/gpu/ |
| cudnn_convolution_algorithm_picker.h | 33 // If the `allocator` parameter is not null, we will use it to allocate temp 35 // we'll use the default allocator on the StreamExecutor. 38 DeviceMemoryAllocator* allocator) 39 : stream_exec_(stream_exec), allocator_(allocator) {}
|
| /external/tensorflow/tensorflow/core/common_runtime/gpu/ |
| gpu_cudamalloc_allocator.cc | 30 GPUcudaMallocAllocator::GPUcudaMallocAllocator(VisitableAllocator* allocator, 32 : base_allocator_(allocator) {
|
| /external/tensorflow/tensorflow/core/framework/ |
| log_memory.h | 87 // bytes. The Eigen allocator, and memory copies, record their 97 Allocator* allocator); 105 void* ptr, Allocator* allocator,
|
| /external/v8/src/ |
| splay-tree.h | 24 // (Allocator). The policy is used for allocating lists in the C free 28 // template <typename Config, class Allocator = FreeStoreAllocationPolicy> 38 explicit SplayTree(AllocationPolicy allocator = AllocationPolicy()) 39 : root_(NULL), allocator_(allocator) {} 43 AllocationPolicy allocator = AllocationPolicy())) { 44 return allocator.New(static_cast<int>(size)); 54 AllocationPolicy allocator() { return allocator_; } function in class:v8::internal::SplayTree 108 INLINE(void* operator new(size_t size, AllocationPolicy allocator)) { 109 return allocator.New(static_cast<int>(size)); 116 INLINE(void operator delete(void* p, AllocationPolicy allocator)) { [all...] |
| /hardware/google/av/codec2/vndk/bufferpool/vts/ |
| allocator.h | 28 // buffer allocator for the tests 31 VtsBufferPoolAllocator(const std::shared_ptr<C2Allocator> &allocator) 32 : mAllocator(allocator) {} 47 // retrieve buffer allocator paramters
|
| /hardware/interfaces/graphics/allocator/2.0/ |
| IAllocator.hal | 17 package android.hardware.graphics.allocator@2.0;
|
| /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/ |
| memorybuffer.h | 33 \tparam Allocator type for allocating memory buffer. 36 template <typename Allocator = CrtAllocator> 40 GenericMemoryBuffer(Allocator* allocator = 0, size_t capacity = kDefaultCapacity) : stack_(allocator, capacity) {} 57 mutable internal::Stack<Allocator> stack_;
|
| /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/allocator.traits/allocator.traits.members/ |
| max_size.pass.cpp | 66 std::allocator<int> a; 67 static_assert(noexcept(std::allocator_traits<std::allocator<int>>::max_size(a)) == true, "");
|
| /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/Include/ |
| PoolAlloc.h | 45 // This header defines an allocator that can be used to efficiently 57 // Individual classes can use this allocator by supplying their own 60 // STL containers can use this allocator by using the pool_allocator 61 // class as the allocator (second) template argument. 251 // with everyone using the same global allocator. 264 // This STL compatible allocator is intended to be used as the allocator 287 pool_allocator() : allocator(GetThreadPoolAllocator()) { } 288 pool_allocator(TPoolAllocator& a) : allocator(a) { } 289 pool_allocator(const pool_allocator<T>& p) : allocator(p.allocator) { 319 TPoolAllocator& allocator; member in class:glslang::pool_allocator [all...] |
| /system/libhidl/ |
| update-makefiles.sh | 4 android.hidl.allocator@1.0
|
| /system/vold/ |
| KeyBuffer.h | 42 // Allocator that delegates useful work to standard one but zeroes data before deallocating. 43 class ZeroingAllocator : public std::allocator<char> { 48 std::allocator<char>::deallocate(p, n);
|
| /external/compiler-rt/lib/sanitizer_common/ |
| sanitizer_symbolizer_mac.h | 35 explicit AtosSymbolizer(const char *path, LowLevelAllocator *allocator);
|
| /external/deqp/external/vulkancts/modules/vulkan/api/ |
| vktApiComputeInstanceResultBuffer.cpp | 36 Allocator &allocator, 41 m_buffer(createResultBuffer(m_vki, m_device, allocator, &m_bufferMem, initValue)), 60 Allocator &allocator, 79 de::MovePtr<Allocation> allocation = allocator.allocate(requirements, MemoryRequirement::HostVisible);
|
| /external/libchrome/base/containers/ |
| hash_tables.h | 48 class Alloc = std::allocator<std::pair<const Key, T>>> 56 class Alloc = std::allocator<std::pair<const Key, T>>> 63 class Alloc = std::allocator<Key>> 70 class Alloc = std::allocator<Key>>
|
| /external/libcxx/test/std/containers/sequences/deque/deque.cons/ |
| alloc.pass.cpp | 21 template <class T, class Allocator> 23 test(const Allocator& a) 25 std::deque<T, Allocator> d(a); 32 test<int>(std::allocator<int>());
|
| default.pass.cpp | 21 template <class T, class Allocator> 25 std::deque<T, Allocator> d; 28 std::deque<T, Allocator> d1 = {}; 35 test<int, std::allocator<int> >();
|
| /external/libcxx/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/ |
| default.pass.cpp | 35 typedef std::allocator<char> AllocT; // Is default constructible
|
| /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/ |
| PR23256_constrain_UTypes_ctor.pass.cpp | 73 std::allocator_arg_t, std::allocator<void>, 78 std::allocator_arg_t, std::allocator<void>, 83 std::allocator_arg_t, std::allocator<void>, 88 std::allocator_arg_t, std::allocator<void>,
|
| /external/tensorflow/tensorflow/core/kernels/ |
| cross_op_test.cc | 16 #include "tensorflow/core/framework/allocator.h" 47 Tensor expected(allocator(), DT_FLOAT, TensorShape({3})); 57 Tensor expected(allocator(), DT_FLOAT, TensorShape({2, 3})); 73 Tensor expected(allocator(), DT_FLOAT, TensorShape({3})); 94 Tensor expected(allocator(), DT_INT32, TensorShape({2, 3}));
|
| /frameworks/base/libs/hwui/ |
| LayerBuilder.h | 89 void deferUnmergeableOp(LinearAllocator& allocator, BakedOpState* op, batchid_t batchId); 93 void deferMergeableOp(LinearAllocator& allocator, BakedOpState* op, batchid_t batchId, 118 void onDeferOp(LinearAllocator& allocator, const BakedOpState* bakedState); 119 void flushLayerClears(LinearAllocator& allocator);
|
| /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.cons/ |
| alloc.pass.cpp | 21 template <class T, class Allocator> 23 test(const Allocator& a) 25 std::deque<T, Allocator> d(a); 32 test<int>(std::allocator<int>());
|