HomeSort by relevance Sort by last modified time
    Searched refs:allocator (Results 576 - 600 of 1382) sorted by null

<<21222324252627282930>>

  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/vector.bool/
construct_iter_iter_alloc.pass.cpp 38 std::allocator<bool> alloc;
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
stl_construct.h 82 // 402. wrong new expression in [some_]allocator::construct
131 * Destroy a range of objects using the supplied allocator. For
149 allocator<_Tp>&)
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/
standard_policies.hpp 137 #define __dtrie_alloc std::allocator<char>
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/
priority_queue.hpp 69 * @tparam _Alloc Allocator type.
82 typename _Alloc = std::allocator<char> >
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/tr1/
unordered_map.h 41 class _Alloc = std::allocator<std::pair<const _Key, _Tp> >,
90 class _Alloc = std::allocator<std::pair<const _Key, _Tp> >,
172 * @param Alloc Allocator type, defaults to allocator<Key>.
179 class _Alloc = std::allocator<std::pair<const _Key, _Tp> > >
224 * @param Alloc Allocator type, defaults to allocator<Key>.
231 class _Alloc = std::allocator<std::pair<const _Key, _Tp> > >
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/deque/deque.cons/
iter_iter.pass.cpp 26 typedef std::allocator<T> Allocator;
27 typedef std::deque<T, Allocator> C;
36 template <class Allocator, class InputIterator>
41 typedef std::deque<T, Allocator> C;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/list/list.cons/
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>());
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector/vector.cons/
construct_iter_iter_alloc.pass.cpp 52 std::allocator<int> alloc;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/vector.bool/
construct_iter_iter_alloc.pass.cpp 39 std::allocator<bool> alloc;
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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
  /prebuilts/tools/darwin-x86_64/protoc/include/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> > >
  /system/libhidl/transport/allocator/1.0/default/
AshmemAllocator.cpp 26 namespace allocator { namespace in namespace:android::hidl
99 } // namespace allocator
  /art/runtime/base/
bit_vector.h 28 class Allocator;
130 Allocator* allocator);
133 Allocator* allocator,
139 Allocator* allocator);
274 Allocator* GetAllocator() const;
301 Allocator* const allocator_; // Allocator if expandable
    [all...]
  /external/libchrome/base/metrics/
persistent_histogram_allocator.h 40 // Constructs the data manager. The allocator must live longer than any
43 PersistentMemoryAllocator* allocator);
56 // don't have to also keep their own pointer to the appropriate allocator.
77 // Weak-pointer to the allocator used by the sparse histograms.
80 // Iterator within the allocator for finding sample records.
127 // don't have to also keep their own pointer to the appropriate allocator.
178 // Iterator used for fetching persistent histograms from an allocator.
183 // Constructs an iterator on a given |allocator|, starting at the beginning.
184 // The allocator must live beyond the lifetime of the iterator.
185 explicit Iterator(PersistentHistogramAllocator* allocator);
    [all...]
  /external/libcxx/test/std/utilities/template.bitset/bitset.members/
to_string.pass.cpp 12 // template <class charT, class traits, class Allocator>
13 // basic_string<charT, traits, Allocator>
17 // basic_string<charT, traits, allocator<charT> > to_string() const;
20 // basic_string<charT, char_traits<charT>, allocator<charT> > to_string() const;
22 // basic_string<char, char_traits<char>, allocator<char> > to_string() const;
49 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >();
84 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >('0');
119 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >('0', '1');
  /external/skia/src/core/
SkImageGenerator.cpp 120 SkBitmap::Allocator* allocator) {
131 if (!bitmap->tryAllocPixels(allocator, ctable.get())) {
136 // ignore the allocator, and see if we can succeed without it
142 // to remind ourselves that this might be better than ignoring the allocator.
149 if (!bitmap->tryAllocPixels(allocator, nullptr)) {
  /external/webrtc/webrtc/p2p/client/
httpportallocator.cc 104 HttpPortAllocatorBase* allocator,
113 : BasicPortAllocatorSession(allocator, content_name, component,
141 if (allocator()->flags() & PORTALLOCATOR_DISABLE_RELAY) {
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
alloc_traits.h 0 // Allocator traits -*- C++ -*-
38 # include <bits/allocator.h> // for __alloc_swap
54 struct __allocator_always_compares_equal<std::allocator<_Tp>>
58 const bool __allocator_always_compares_equal<std::allocator<_Tp>>::value;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
alloc_traits.h 0 // Allocator traits -*- C++ -*-
38 # include <bits/allocator.h> // for __alloc_swap
54 struct __allocator_always_compares_equal<std::allocator<_Tp>>
58 const bool __allocator_always_compares_equal<std::allocator<_Tp>>::value;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
alloc_traits.h 0 // Allocator traits -*- C++ -*-
38 # include <bits/allocator.h> // for __alloc_swap
54 struct __allocator_always_compares_equal<std::allocator<_Tp>>
58 const bool __allocator_always_compares_equal<std::allocator<_Tp>>::value;
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/template.bitset/bitset.members/
to_string.pass.cpp 12 // template <class charT, class traits, class Allocator>
13 // basic_string<charT, traits, Allocator>
17 // basic_string<charT, traits, allocator<charT> > to_string() const;
20 // basic_string<charT, char_traits<charT>, allocator<charT> > to_string() const;
22 // basic_string<char, char_traits<char>, allocator<char> > to_string() const;
47 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >();
82 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >('0');
117 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >('0', '1');
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/utilities/template.bitset/bitset.members/
to_string.pass.cpp 12 // template <class charT, class traits, class Allocator>
13 // basic_string<charT, traits, Allocator>
17 // basic_string<charT, traits, allocator<charT> > to_string() const;
20 // basic_string<charT, char_traits<charT>, allocator<charT> > to_string() const;
22 // basic_string<char, char_traits<char>, allocator<char> > to_string() const;
49 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >();
84 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >('0');
119 std::wstring s = v.template to_string<wchar_t, std::char_traits<wchar_t>, std::allocator<wchar_t> >('0', '1');
  /art/compiler/optimizing/
register_allocator_linear_scan.cc 43 RegisterAllocatorLinearScan::RegisterAllocatorLinearScan(ArenaAllocator* allocator,
46 : RegisterAllocator(allocator, codegen, liveness),
47 unhandled_core_intervals_(allocator->Adapter(kArenaAllocRegisterAllocator)),
48 unhandled_fp_intervals_(allocator->Adapter(kArenaAllocRegisterAllocator)),
50 handled_(allocator->Adapter(kArenaAllocRegisterAllocator)),
51 active_(allocator->Adapter(kArenaAllocRegisterAllocator)),
52 inactive_(allocator->Adapter(kArenaAllocRegisterAllocator)),
53 physical_core_register_intervals_(allocator->Adapter(kArenaAllocRegisterAllocator)),
54 physical_fp_register_intervals_(allocator->Adapter(kArenaAllocRegisterAllocator)),
55 temp_intervals_(allocator->Adapter(kArenaAllocRegisterAllocator))
    [all...]
register_allocator_graph_color.cc 221 InterferenceNode(ArenaAllocator* allocator,
226 adjacent_nodes_(allocator->Adapter(kArenaAllocRegisterAllocator)),
227 coalesce_opportunities_(allocator->Adapter(kArenaAllocRegisterAllocator)),
420 ArenaAllocator* allocator,
424 allocator_(allocator),
427 interval_node_map_(allocator->Adapter(kArenaAllocRegisterAllocator)),
428 prunable_nodes_(allocator->Adapter(kArenaAllocRegisterAllocator)),
429 pruned_nodes_(allocator->Adapter(kArenaAllocRegisterAllocator)),
430 simplify_worklist_(allocator->Adapter(kArenaAllocRegisterAllocator)),
431 freeze_worklist_(allocator->Adapter(kArenaAllocRegisterAllocator))
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/spirv_assembly/
vktSpvAsmComputeShaderCase.cpp 52 Move<VkBuffer> createBufferAndBindMemory (const DeviceInterface& vkdi, const VkDevice& device, Allocator& allocator, size_t numBytes, AllocationMp* outMemory)
68 AllocationMp bufferMemory = allocator.allocate(requirements, MemoryRequirement::HostVisible);
294 Allocator& allocator = m_context.getDefaultAllocator(); local
312 BufferHandleUp* buffer = new BufferHandleUp(createBufferAndBindMemory(vkdi, device, allocator, numBytes, &alloc));
325 BufferHandleUp* buffer = new BufferHandleUp(createBufferAndBindMemory(vkdi, device, allocator, numBytes, &alloc));

Completed in 1275 milliseconds

<<21222324252627282930>>