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

<<11121314151617181920>>

  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/strings/basic.string/string.cons/
implicit_deduction_guides.pass.cpp 31 template <class T, class Alloc = std::allocator<T>>
35 // using A = Allocator;
66 { // Testing (3) w/o allocator
75 { // Testing (3) w/ allocator
84 { // Testing (4) w/o allocator
98 { // Testing (4) w/ allocator
100 std::basic_string s(sin, (size_t)1, std::allocator<char>{});
112 { // Testing (5) w/o allocator
128 { // Testing (5) w/ allocator
130 std::basic_string s(sin, (size_t)1, (size_t)3, std::allocator<char>{})
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/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...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc_rfunction.pass.cpp 87 std::function<int(int)> f2(std::allocator_arg, std::allocator<void>{},
103 std::function<int(int)> f2(std::allocator_arg, std::allocator<void>(),
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/memory/default.allocator/allocator.members/
construct.pass.cpp 12 // allocator:
61 std::allocator<A> a;
109 std::allocator<move_only> a;
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
alloc_convert_move.pass.cpp 96 std::tuple<Explicit> t2{std::allocator_arg, std::allocator<void>{}, std::move(t1)};
101 std::tuple<Implicit> t2 = {std::allocator_arg, std::allocator<void>{}, std::move(t1)};
  /system/core/libmemunreachable/
LeakPipe.h 114 template <class T, class Alloc = std::allocator<T>>
152 template <class T, class Alloc = std::allocator<T>>
  /external/libchrome/base/metrics/
persistent_memory_allocator_unittest.cc 215 // Create second allocator (read/write) using the same memory segment.
222 // Ensure that iteration and access through second allocator works.
230 // Create a third allocator (read-only) using the same memory segment.
237 // Ensure that iteration and access through third allocator works.
282 // A simple thread that takes an allocator and repeatedly allocates random-
355 // A simple thread that counts objects by iterating through an allocator.
550 LocalPersistentMemoryAllocator allocator(TEST_MEMORY_SIZE, 42, "");
551 EXPECT_EQ(42U, allocator.Id());
552 EXPECT_NE(0U, allocator.Allocate(24, 1));
553 EXPECT_FALSE(allocator.IsFull())
    [all...]
  /art/compiler/driver/
compiled_method_storage.cc 38 SwapAllocator<uint8_t> allocator(swap_space);
39 void* storage = allocator.allocate(LengthPrefixedArray<T>::ComputeSize(array.size()));
47 SwapAllocator<uint8_t> allocator(swap_space);
50 allocator.deallocate(const_cast<uint8_t*>(reinterpret_cast<const uint8_t*>(array)), size);
  /art/compiler/optimizing/
optimization.h 132 ArenaAllocator* allocator,
register_allocator_graph_color.h 41 * A graph coloring register allocator.
89 RegisterAllocatorGraphColor(ScopedArenaAllocator* allocator,
  /art/libartbase/base/
hash_map.h 53 class Alloc = std::allocator<std::pair<Key, Value>>>
  /art/runtime/base/
arena_containers.h 39 // explicit Foo(ArenaAllocator* allocator)
40 // : foo_vector(allocator->Adapter(kArenaAllocMisc)),
41 // foo_map(std::less<int>(), allocator->Adapter()) {
140 explicit ArenaAllocatorAdapter(ArenaAllocator* allocator,
143 allocator_(allocator) {
177 ArenaAllocatorAdapter(ArenaAllocator* allocator, ArenaAllocKind kind)
179 allocator_(allocator) {
  /external/clang/test/SemaTemplate/
default-arguments.cpp 130 template<typename T> class allocator {}; class in namespace:PR9643
131 template<typename T, typename U = allocator<T> > class vector {};
133 template<template<typename U, typename = allocator<U> > class container,
140 vector<int, allocator<int> > v = initializer<vector>(5);
default-expr-arguments.cpp 162 struct allocator { struct in namespace:PR5810
163 allocator() { int a[sizeof(T) ? -1 : -1]; } // expected-error2 {{array with a negative size}} function in struct:PR5810::allocator
168 vector(const allocator<T>& = allocator<T>()) {} // expected-note2 {{instantiation of}}
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer_win.cc 248 LowLevelAllocator *allocator) {
261 list->push_back(new(*allocator) LLVMSymbolizer(path, allocator));
271 list->push_back(new(*allocator) WinSymbolizerTool());
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiBufferComputeInstance.cpp 46 Allocator& allocator = context.getDefaultAllocator(); local
65 de::MovePtr<Allocation> allocation = allocator.allocate(requirements, MemoryRequirement::HostVisible);
93 Allocator& allocator = context.getDefaultAllocator(); local
112 de::MovePtr<Allocation> allocation = allocator.allocate(requirements, MemoryRequirement::HostVisible);
  /external/deqp/external/vulkancts/modules/vulkan/compute/
vktComputeTestsUtil.cpp 37 Allocator& allocator,
42 m_allocation = allocator.allocate(getBufferMemoryRequirements(vk, device, *m_buffer), memoryRequirement);
48 Allocator& allocator,
53 m_allocation = allocator.allocate(getImageMemoryRequirements(vk, device, *m_image), memoryRequirement);
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawBufferObjectUtil.hpp 46 vk::Allocator& allocator,
  /external/deqp/external/vulkancts/modules/vulkan/fragment_ops/
vktFragmentOperationsMakeUtil.cpp 256 MovePtr<Allocation> bindImage (const DeviceInterface& vk, const VkDevice device, Allocator& allocator, const VkImage image, const MemoryRequirement requirement)
258 MovePtr<Allocation> alloc = allocator.allocate(getImageMemoryRequirements(vk, device, image), requirement);
263 MovePtr<Allocation> bindBuffer (const DeviceInterface& vk, const VkDevice device, Allocator& allocator, const VkBuffer buffer, const MemoryRequirement requirement)
265 MovePtr<Allocation> alloc(allocator.allocate(getBufferMemoryRequirements(vk, device, buffer), requirement));
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineMakeUtil.hpp 42 vk::Allocator& allocator,
63 vk::Allocator& allocator,
89 de::MovePtr<vk::Allocation> bindImage (const vk::DeviceInterface& vk, const vk::VkDevice device, vk::Allocator& allocator, const vk::VkImage image, const vk::MemoryRequirement requirement);
90 de::MovePtr<vk::Allocation> bindBuffer (const vk::DeviceInterface& vk, const vk::VkDevice device, vk::Allocator& allocator, const vk::VkBuffer buffer, const vk::MemoryRequirement requirement);
  /external/dng_sdk/source/
dng_iptc.h 147 /// \param allocator Memory allocator used to acquire memory block.
151 dng_memory_block * Spool (dng_memory_allocator &allocator,
  /external/libchrome/base/allocator/
allocator_shim.h 14 namespace allocator { namespace in namespace:base
16 // Allocator Shim API. Allows to to:
17 // - Configure the behavior of the allocator (what to do on OOM failures).
18 // - Install new hooks (AllocatorDispatch) in the allocator chain.
38 // ultimately routes the calls to the actual allocator defined by the build
114 // Inserts |dispatch| in front of the allocator chain. This method is
126 // On macOS, the allocator shim needs to be turned on during runtime.
130 } // namespace allocator
allocator_shim_default_dispatch_to_glibc.cc 5 #include "base/allocator/allocator_shim.h"
9 // This translation unit defines a default dispatch for the allocator shim which
23 using base::allocator::AllocatorDispatch;
allocator_shim_default_dispatch_to_linker_wrapped_symbols.cc 7 #include "base/allocator/allocator_shim.h"
14 // This translation unit defines a default dispatch for the allocator shim which
33 using base::allocator::AllocatorDispatch;
  /external/libcxx/test/libcxx/utilities/tuple/tuple.tuple/tuple.cnstr/
PR20855_tuple_ref_binding_diagnostics.fail.cpp 72 std::allocator<void> alloc;

Completed in 879 milliseconds

<<11121314151617181920>>