HomeSort by relevance Sort by last modified time
    Searched refs:allocator (Results 676 - 700 of 1428) sorted by null

<<21222324252627282930>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
uses_alloc_types.hpp 21 // There are two forms of uses-allocator construction:
24 // 'UA_None' represents non-uses allocator construction.
60 // Implements form (1) of uses-allocator construction from the specified
62 // non-uses allocator construction from 'N' arguments. This test type
63 // blows up when form (2) of uses-allocator is even considered.
67 // Implements form (2) of uses-allocator construction from the specified
69 // non-uses allocator construction from 'N' arguments.
73 // Implements both form (1) and (2) of uses-allocator construction from
75 // provides non-uses allocator construction from 'N' arguments.
79 // Implements both form (1) and (2) of uses-allocator construction fro
158 Alloc allocator; member in struct:UsesAllocatorType::UsesAllocatorTestBaseStorage
    [all...]
  /tools/dexter/dexter/
dexter.cc 264 // our custom (and trivial) allocator for dex::Writer
265 struct Allocator : public dex::Writer::Allocator {
272 Allocator allocator; local
278 new_image = writer.CreateImage(&allocator, &new_image_size);
287 allocator.Free(new_image);
  /art/compiler/optimizing/
dead_code_elimination.cc 29 // Use local allocator for allocating memory.
30 ScopedArenaAllocator allocator(graph->GetArenaStack());
32 ScopedArenaVector<HBasicBlock*> worklist(allocator.Adapter(kArenaAllocDCE));
448 // Use local allocator for allocating memory.
449 ScopedArenaAllocator allocator(graph_->GetArenaStack());
452 ArenaBitVector live_blocks(&allocator, graph_->GetBlocks().size(), false, kArenaAllocDCE);
register_allocator_linear_scan.h 38 * An implementation of a linear scan register allocator on an `HGraph` with SSA form.
42 RegisterAllocatorLinearScan(ScopedArenaAllocator* allocator,
67 // Main methods of the allocator.
  /art/runtime/gc/space/
dlmalloc_space.cc 156 void* allocator, uint8_t* begin, uint8_t* end,
161 mem_map, initial_size_, name, allocator, begin, end, limit, growth_limit,
164 return new DlMallocSpace(mem_map, initial_size_, name, allocator, begin, end, limit,
321 namespace allocator { namespace in namespace:art::gc
351 } // namespace allocator
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationUtil.hpp 44 vk::Allocator& allocator,
48 , m_allocation (allocator.allocate(getBufferMemoryRequirements(vk, device, *m_buffer), memoryRequirement))
78 vk::Allocator& allocator,
82 , m_allocation (allocator.allocate(getImageMemoryRequirements(vk, device, *m_image), memoryRequirement))
  /external/dng_sdk/source/
dng_host.h 110 /// Allocate a dng_host object, possiblly with custom allocator and sniffer.
111 /// \param allocator Allows controlling all memory allocation done via this
118 dng_host (dng_memory_allocator *allocator = NULL,
121 /// Clean up direct memory for dng_host. Memory allocator and abort sniffer
127 /// Getter for host's memory allocator.
129 dng_memory_allocator & Allocator ();
131 /// Alocate a new dng_memory_block using the host's memory allocator.
132 /// Uses the Allocator() property of host to allocate a new block of memory.
  /external/jemalloc/include/jemalloc/
jemalloc_macros.h 62 # define JEMALLOC_ALLOCATOR __declspec(allocator)
  /external/libcxx/test/std/containers/associative/map/
types.pass.cpp 13 // class Allocator = allocator<pair<const Key, T>>>
22 // typedef Allocator allocator_type;
45 static_assert((std::is_same<C::allocator_type, std::allocator<std::pair<const int, double> > >::value), "");
  /external/libcxx/test/std/containers/associative/multimap/
types.pass.cpp 13 // class Allocator = allocator<pair<const Key, T>>>
22 // typedef Allocator allocator_type;
45 static_assert((std::is_same<C::allocator_type, std::allocator<std::pair<const int, double> > >::value), "");
  /external/libcxx/test/std/containers/associative/multiset/
types.pass.cpp 13 // class Allocator = allocator<Key>>
22 // typedef Allocator allocator_type;
45 static_assert((std::is_same<C::allocator_type, std::allocator<int> >::value), "");
  /external/libcxx/test/std/containers/associative/set/
types.pass.cpp 13 // class Allocator = allocator<Key>>
22 // typedef Allocator allocator_type;
45 static_assert((std::is_same<C::allocator_type, std::allocator<int> >::value), "");
  /external/libcxx/test/std/containers/sequences/forwardlist/
types.pass.cpp 12 // template <class T, class Allocator = allocator<T>>
17 // typedef Allocator allocator_type;
40 static_assert((std::is_same<C::allocator_type, std::allocator<char> >::value), "");
  /external/libcxx/test/std/containers/unord/unord.map/
types.pass.cpp 13 // class Alloc = allocator<pair<const Key, T>>>
44 static_assert((std::is_same<C::allocator_type, std::allocator<C::value_type> >::value), "");
  /external/libcxx/test/std/containers/unord/unord.map/unord.map.cnstr/
assign_init.pass.cpp 15 // class Alloc = allocator<pair<const Key, T>>>
33 typedef std::allocator<std::pair<const int, std::string> > A;
  /external/libcxx/test/std/containers/unord/unord.multimap/
types.pass.cpp 13 // class Alloc = allocator<pair<const Key, T>>>
44 static_assert((std::is_same<C::allocator_type, std::allocator<C::value_type> >::value), "");
  /external/libcxx/test/std/containers/unord/unord.multiset/
types.pass.cpp 13 // class Alloc = allocator<Value>>
43 static_assert((std::is_same<C::allocator_type, std::allocator<C::value_type> >::value), "");
  /external/libcxx/test/std/containers/unord/unord.set/
types.pass.cpp 13 // class Alloc = allocator<Value>>
43 static_assert((std::is_same<C::allocator_type, std::allocator<C::value_type> >::value), "");
  /external/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/
emplace_initializer_list.pass.cpp 87 auto &v = opt.emplace({1, 2, 3}, std::allocator<int>());
  /external/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
initializer_list.pass.cpp 83 optional<std::vector<int>> opt(in_place, {3, 1}, std::allocator<int>());
  /external/libxcam/xcore/
image_handler.h 98 bool set_allocator (const SmartPtr<BufferPool> &allocator);
  /external/tensorflow/tensorflow/compiler/xla/client/
local_client.h 127 // ScopedShapedBuffer. If non-null the given memory allocator is used for
128 // device memory allocation. If null, the default memory allocator for the
132 DeviceMemoryAllocator* allocator = nullptr);
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
cpu_executable.cc 230 DeviceMemoryAllocator* allocator, se::Stream* stream,
241 allocator->Deallocate(stream->parent()->device_ordinal(), &alloc));
296 DeviceMemoryAllocator* memory_allocator = run_options->allocator();
328 DeviceMemoryAllocator* memory_allocator = run_options->allocator();
  /external/tensorflow/tensorflow/compiler/xla/service/interpreter/
executable.cc 95 result_literal->shape(), run_options->allocator(),
  /external/tensorflow/tensorflow/core/kernels/data/sql/
sqlite_query_connection.cc 60 // TODO(mrry): Pass in the `IteratorContext::allocator()`.
61 Tensor tensor(ctx->allocator({}), dt, {});

Completed in 1154 milliseconds

<<21222324252627282930>>