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

<<11121314151617181920>>

  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/containers/sequences/deque/deque.cons/
iter_iter_alloc.pass.cpp 22 template <class InputIterator, class Allocator>
24 test(InputIterator f, InputIterator l, const Allocator& a)
27 typedef std::deque<T, Allocator> C;
size_value_alloc.pass.cpp 19 template <class T, class Allocator>
21 test(unsigned n, const T& x, const Allocator& a)
23 typedef std::deque<T, Allocator> C;
36 std::allocator<int> a;
  /external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_allocator_test.cc 75 template <class Allocator>
77 Allocator *a = new Allocator;
79 SizeClassAllocatorLocalCache<Allocator> cache;
98 uptr class_id0 = Allocator::SizeClassMapT::ClassID(size);
111 CHECK_EQ(class_id, Allocator::SizeClassMapT::ClassID(size));
156 template <class Allocator>
158 Allocator *a = new Allocator;
160 SizeClassAllocatorLocalCache<Allocator> cache
561 AllocatorCache::Allocator *allocator; member in struct:NewThreadParams
575 AllocatorCache::Allocator allocator; local
    [all...]
  /external/v8/src/
splay-tree.h 47 // (Allocator). The policy is used for allocating lists in the C free
51 // template <typename Config, class Allocator = FreeStoreAllocationPolicy>
53 template <typename Config, class Allocator>
65 return Allocator::New(static_cast<int>(size));
67 INLINE(void operator delete(void* p, size_t)) { return Allocator::Delete(p); }
116 return Allocator::New(static_cast<int>(size));
119 return Allocator::Delete(p);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/
tree_trace_base.hpp 63 class Allocator>
71 Allocator>
77 Allocator>
83 class Allocator>
95 typedef typename Allocator::size_type size_type;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/
tree_trace_base.hpp 63 class Allocator>
71 Allocator>
77 Allocator>
83 class Allocator>
95 typedef typename Allocator::size_type size_type;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/
tree_trace_base.hpp 63 class Allocator>
71 Allocator>
77 Allocator>
83 class Allocator>
95 typedef typename Allocator::size_type size_type;
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/
tree_trace_base.hpp 63 class Allocator>
71 Allocator>
77 Allocator>
83 class Allocator>
95 typedef typename Allocator::size_type size_type;
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/
tree_trace_base.hpp 63 class Allocator>
71 Allocator>
77 Allocator>
83 class Allocator>
95 typedef typename Allocator::size_type size_type;
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/
tree_trace_base.hpp 63 class Allocator>
71 Allocator>
77 Allocator>
83 class Allocator>
95 typedef typename Allocator::size_type size_type;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/
tree_trace_base.hpp 63 class Allocator>
71 Allocator>
77 Allocator>
83 class Allocator>
95 typedef typename Allocator::size_type size_type;
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/
tree_trace_base.hpp 63 class Allocator>
71 Allocator>
77 Allocator>
83 class Allocator>
95 typedef typename Allocator::size_type size_type;
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/
tree_trace_base.hpp 63 class Allocator>
71 Allocator>
77 Allocator>
83 class Allocator>
95 typedef typename Allocator::size_type size_type;
  /external/llvm/include/llvm/ADT/
StringMap.h 18 #include "llvm/Support/Allocator.h"
148 AllocatorTy &Allocator,
161 static_cast<StringMapEntry*>(Allocator.Allocate(AllocSize,Alignment));
178 AllocatorTy &Allocator) {
179 return Create(KeyStart, KeyEnd, Allocator, 0);
215 /// specified allocator.
217 void Destroy(AllocatorTy &Allocator) {
220 Allocator.Deallocate(this);
223 /// Destroy this object, releasing memory back to the malloc allocator.
237 AllocatorTy Allocator;
    [all...]
  /external/llvm/lib/Support/
Allocator.cpp 1 //===--- Allocator.cpp - Simple memory allocation abstraction -------------===//
14 #include "llvm/Support/Allocator.h"
25 SlabAllocator &allocator)
27 Allocator(allocator), CurSlab(0), BytesAllocated(0) { }
54 MemSlab *NewSlab = Allocator.Allocate(SlabSize);
72 Allocator.Deallocate(Slab);
117 MemSlab *NewSlab = Allocator.Allocate(PaddedSize);
178 MemSlab *Slab = (MemSlab*)Allocator.Allocate(Size, 0);
185 Allocator.Deallocate(Slab)
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/ext/pb_ds/detail/list_update_map_/
lu_map_.hpp 62 class Allocator, class Update_Policy>
73 PB_DS_CLASS_NAME<Key, Mapped, Eq_Fn, Allocator, Update_Policy>
76 types_traits<Key, Mapped, Allocator, false>
81 typename Allocator::template rebind<Key>::other::const_reference>
101 class Allocator,
116 typename Allocator::template rebind<entry>::other::pointer m_p_next;
119 typedef typename Allocator::template rebind<entry>::other entry_allocator;
125 typedef typename Allocator::template rebind<entry_pointer>::other entry_pointer_allocator;
148 typedef cond_dealtor<entry, Allocator> cond_dealtor_t;
151 typedef Allocator allocator_type
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/ext/pb_ds/detail/list_update_map_/
lu_map_.hpp 62 class Allocator, class Update_Policy>
73 PB_DS_CLASS_NAME<Key, Mapped, Eq_Fn, Allocator, Update_Policy>
76 types_traits<Key, Mapped, Allocator, false>
81 typename Allocator::template rebind<Key>::other::const_reference>
101 class Allocator,
116 typename Allocator::template rebind<entry>::other::pointer m_p_next;
119 typedef typename Allocator::template rebind<entry>::other entry_allocator;
125 typedef typename Allocator::template rebind<entry_pointer>::other entry_pointer_allocator;
148 typedef cond_dealtor<entry, Allocator> cond_dealtor_t;
151 typedef Allocator allocator_type
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/ext/pb_ds/detail/list_update_map_/
lu_map_.hpp 62 class Allocator, class Update_Policy>
73 PB_DS_CLASS_NAME<Key, Mapped, Eq_Fn, Allocator, Update_Policy>
76 types_traits<Key, Mapped, Allocator, false>
81 typename Allocator::template rebind<Key>::other::const_reference>
101 class Allocator,
116 typename Allocator::template rebind<entry>::other::pointer m_p_next;
119 typedef typename Allocator::template rebind<entry>::other entry_allocator;
125 typedef typename Allocator::template rebind<entry_pointer>::other entry_pointer_allocator;
148 typedef cond_dealtor<entry, Allocator> cond_dealtor_t;
151 typedef Allocator allocator_type
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/list_update_map_/
lu_map_.hpp 62 class Allocator, class Update_Policy>
73 PB_DS_CLASS_NAME<Key, Mapped, Eq_Fn, Allocator, Update_Policy>
76 types_traits<Key, Mapped, Allocator, false>
81 typename Allocator::template rebind<Key>::other::const_reference>
101 class Allocator,
116 typename Allocator::template rebind<entry>::other::pointer m_p_next;
119 typedef typename Allocator::template rebind<entry>::other entry_allocator;
125 typedef typename Allocator::template rebind<entry_pointer>::other entry_pointer_allocator;
148 typedef cond_dealtor<entry, Allocator> cond_dealtor_t;
151 typedef Allocator allocator_type
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/list_update_map_/
lu_map_.hpp 62 class Allocator, class Update_Policy>
73 PB_DS_CLASS_NAME<Key, Mapped, Eq_Fn, Allocator, Update_Policy>
76 types_traits<Key, Mapped, Allocator, false>
81 typename Allocator::template rebind<Key>::other::const_reference>
101 class Allocator,
116 typename Allocator::template rebind<entry>::other::pointer m_p_next;
119 typedef typename Allocator::template rebind<entry>::other entry_allocator;
125 typedef typename Allocator::template rebind<entry_pointer>::other entry_pointer_allocator;
148 typedef cond_dealtor<entry, Allocator> cond_dealtor_t;
151 typedef Allocator allocator_type
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/ext/pb_ds/detail/list_update_map_/
lu_map_.hpp 62 class Allocator, class Update_Policy>
73 PB_DS_CLASS_NAME<Key, Mapped, Eq_Fn, Allocator, Update_Policy>
76 types_traits<Key, Mapped, Allocator, false>
81 typename Allocator::template rebind<Key>::other::const_reference>
101 class Allocator,
116 typename Allocator::template rebind<entry>::other::pointer m_p_next;
119 typedef typename Allocator::template rebind<entry>::other entry_allocator;
125 typedef typename Allocator::template rebind<entry_pointer>::other entry_pointer_allocator;
148 typedef cond_dealtor<entry, Allocator> cond_dealtor_t;
151 typedef Allocator allocator_type
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/ext/pb_ds/detail/list_update_map_/
lu_map_.hpp 62 class Allocator, class Update_Policy>
73 PB_DS_CLASS_NAME<Key, Mapped, Eq_Fn, Allocator, Update_Policy>
76 types_traits<Key, Mapped, Allocator, false>
81 typename Allocator::template rebind<Key>::other::const_reference>
101 class Allocator,
116 typename Allocator::template rebind<entry>::other::pointer m_p_next;
119 typedef typename Allocator::template rebind<entry>::other entry_allocator;
125 typedef typename Allocator::template rebind<entry_pointer>::other entry_pointer_allocator;
148 typedef cond_dealtor<entry, Allocator> cond_dealtor_t;
151 typedef Allocator allocator_type
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/list_update_map_/
lu_map_.hpp 62 class Allocator, class Update_Policy>
73 PB_DS_CLASS_NAME<Key, Mapped, Eq_Fn, Allocator, Update_Policy>
76 types_traits<Key, Mapped, Allocator, false>
81 typename Allocator::template rebind<Key>::other::const_reference>
101 class Allocator,
116 typename Allocator::template rebind<entry>::other::pointer m_p_next;
119 typedef typename Allocator::template rebind<entry>::other entry_allocator;
125 typedef typename Allocator::template rebind<entry_pointer>::other entry_pointer_allocator;
148 typedef cond_dealtor<entry, Allocator> cond_dealtor_t;
151 typedef Allocator allocator_type
    [all...]
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.6/include/ext/pb_ds/detail/list_update_map_/
lu_map_.hpp 62 class Allocator, class Update_Policy>
73 PB_DS_CLASS_NAME<Key, Mapped, Eq_Fn, Allocator, Update_Policy>
76 types_traits<Key, Mapped, Allocator, false>
81 typename Allocator::template rebind<Key>::other::const_reference>
101 class Allocator,
116 typename Allocator::template rebind<entry>::other::pointer m_p_next;
119 typedef typename Allocator::template rebind<entry>::other entry_allocator;
125 typedef typename Allocator::template rebind<entry_pointer>::other entry_pointer_allocator;
148 typedef cond_dealtor<entry, Allocator> cond_dealtor_t;
151 typedef Allocator allocator_type
    [all...]
  /external/llvm/include/llvm/CodeGen/
LiveIntervalUnion.h 56 // LiveIntervalUnions share an external allocator.
57 typedef LiveSegments::Allocator Allocator;
66 explicit LiveIntervalUnion(Allocator &a) : Tag(0), Segments(a) {}
190 void init(LiveIntervalUnion::Allocator&, unsigned Size);

Completed in 5357 milliseconds

<<11121314151617181920>>