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

1 2 3 4 5 6 7 891011>>

  /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>,
  /frameworks/base/libs/hwui/
LayerBuilder.h 88 void deferUnmergeableOp(LinearAllocator& allocator, BakedOpState* op, batchid_t batchId);
92 void deferMergeableOp(LinearAllocator& allocator,
118 void onDeferOp(LinearAllocator& allocator, const BakedOpState* bakedState);
119 void flushLayerClears(LinearAllocator& allocator);
  /hardware/interfaces/graphics/allocator/2.0/default/
Gralloc.cpp 28 namespace allocator { namespace in namespace:android::hardware::graphics
54 } // namespace allocator
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/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> >();
  /prebuilts/ndk/r13/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>());
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> >();
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/memory/memory.resource.adaptor/memory.resource.adaptor.ctor/
default.pass.cpp 35 typedef std::allocator<char> AllocT; // Is default constructible
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/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>,
  /system/core/libmemunreachable/
MemUnreachable.cpp 29 #include "Allocator.h"
50 MemUnreachable(pid_t pid, Allocator<void> allocator) : pid_(pid), allocator_(allocator),
52 bool CollectAllocations(const allocator::vector<ThreadInfo>& threads,
53 const allocator::vector<Mapping>& mappings);
54 bool GetUnreachableMemory(allocator::vector<Leak>& leaks, size_t limit,
59 bool ClassifyMappings(const allocator::vector<Mapping>& mappings,
60 allocator::vector<Mapping>& heap_mappings,
61 allocator::vector<Mapping>& anon_mappings
    [all...]
  /art/compiler/optimizing/
graph_visualizer.h 57 explicit DisassemblyInformation(ArenaAllocator* allocator)
59 instruction_intervals_(std::less<const HInstruction*>(), allocator->Adapter()),
60 slow_path_intervals_(allocator->Adapter()) {}
register_allocator.h 38 * Base class for any register allocator.
49 static RegisterAllocator* Create(ArenaAllocator* allocator,
56 // Main entry point for the register allocator. Given the liveness analysis,
60 // Validate that the register allocator did not allocate the same register to
72 ArenaAllocator* allocator,
79 RegisterAllocator(ArenaAllocator* allocator,
register_allocator.cc 31 RegisterAllocator::RegisterAllocator(ArenaAllocator* allocator,
34 : allocator_(allocator),
38 RegisterAllocator* RegisterAllocator::Create(ArenaAllocator* allocator,
44 return new (allocator) RegisterAllocatorLinearScan(allocator, codegen, analysis);
46 return new (allocator) RegisterAllocatorGraphColor(allocator, codegen, analysis);
95 ArenaAllocator* allocator,
102 allocator->Adapter(kArenaAllocRegisterAllocatorValidate));
116 ArenaBitVector::Create(allocator, max_end, false, kArenaAllocRegisterAllocatorValidate))
    [all...]
  /external/libcxx/test/std/containers/sequences/list/
types.pass.cpp 12 // template <class T, class Alloc = allocator<T> >
37 static_assert((std::is_same<C::allocator_type, std::allocator<int> >::value), "");
38 static_assert((std::is_same<C::reference, std::allocator<int>::reference>::value), "");
39 static_assert((std::is_same<C::const_reference, std::allocator<int>::const_reference>::value), "");
40 static_assert((std::is_same<C::pointer, std::allocator<int>::pointer>::value), "");
41 static_assert((std::is_same<C::const_pointer, std::allocator<int>::const_pointer>::value), "");
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
valuetest.cpp 77 Value::AllocatorType allocator; local
80 x.Reserve(4u, allocator);
81 x.PushBack(1, allocator).PushBack(2, allocator).PushBack(3, allocator).PushBack(4, allocator);
160 Value::AllocatorType allocator; local
162 x.AddMember("hello", "world", allocator)
163 .AddMember("t", Value(true).Move(), allocator)
164 .AddMember("f", Value(false).Move(), allocator)
619 MemoryPoolAllocator<> allocator; local
718 Value::AllocatorType allocator; local
768 y.PushBack(Value(true), allocator); local
911 Value::AllocatorType allocator; local
983 o.AddMember(Value("true"), Value(true), allocator); local
1192 Value::AllocatorType allocator; local
1210 MemoryPoolAllocator<> allocator; local
1231 MemoryPoolAllocator<> allocator; local
1273 rapidjson::Document::AllocatorType& allocator = doc.GetAllocator(); local
1287 V::AllocatorType allocator; local
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/containers/sequences/list/
types.pass.cpp 12 // template <class T, class Alloc = allocator<T> >
37 static_assert((std::is_same<C::allocator_type, std::allocator<int> >::value), "");
38 static_assert((std::is_same<C::reference, std::allocator<int>::reference>::value), "");
39 static_assert((std::is_same<C::const_reference, std::allocator<int>::const_reference>::value), "");
40 static_assert((std::is_same<C::pointer, std::allocator<int>::pointer>::value), "");
41 static_assert((std::is_same<C::const_pointer, std::allocator<int>::const_pointer>::value), "");
  /art/test/130-hprof/src/
Main.java 48 Class<?> allocator = loader.loadClass("Allocator"); local
49 return allocator.getDeclaredMethod("allocObject", null).invoke(null);
135 Allocator allocator = new Allocator(); local
136 Dumper dumper = new Dumper(allocator);
137 allocator.start();
140 allocator.join();
147 private static class Allocator extends Thread
167 Allocator allocator; field in class:Main.Dumper
    [all...]
  /external/skia/src/core/
SkBlitter_Sprite.cpp 143 const SkPixmap& source, int left, int top, SkArenaAlloc* allocator) {
153 SkASSERT(allocator != nullptr);
164 blitter = allocator->make<SkSpriteBlitter_Src_SrcOver>(source);
168 blitter = SkSpriteBlitter::ChooseD16(source, paint, allocator);
172 blitter = SkSpriteBlitter::ChooseS32(source, paint, allocator);
174 blitter = SkSpriteBlitter::ChooseL32(source, paint, allocator);
178 blitter = SkSpriteBlitter::ChooseF16(source, paint, allocator);
SkSpriteBlitter4f.cpp 66 SkArenaAlloc* allocator) {
67 SkASSERT(allocator != nullptr);
76 return allocator->make<Sprite_F16>(source, paint);
116 SkArenaAlloc* allocator) {
117 SkASSERT(allocator != nullptr);
126 return allocator->make<Sprite_sRGB>(source, paint);
  /external/swiftshader/src/OpenGL/compiler/
Compiler.cpp 28 TScopedPoolAllocator(TPoolAllocator* allocator, bool pushPop)
29 : mAllocator(allocator), mPushPopAllocator(pushPop)
77 allocator.push();
78 SetGlobalPoolAllocator(&allocator);
84 allocator.popAll();
91 TScopedPoolAllocator scopedAlloc(&allocator, false);
105 TScopedPoolAllocator scopedAlloc(&allocator, true);
  /external/libchrome/base/metrics/
sparse_histogram.cc 29 // Try to create the histogram using a "persistent" allocator. As of
31 // that is off by default. If the allocator doesn't exist or if
36 PersistentHistogramAllocator* allocator = GlobalHistogramAllocator::Get(); local
37 if (allocator) {
38 tentative_histogram = allocator->AllocateHistogram(
42 // Handle the case where no persistent allocator is present or the
46 DCHECK(!allocator); // Shouldn't have failed.
62 allocator->FinalizeHistogram(histogram_ref,
77 PersistentHistogramAllocator* allocator,
82 new SparseHistogram(allocator, name, meta, logged_meta))
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_mman.cc 61 static char allocator_placeholder[sizeof(Allocator)] ALIGNED(64);
62 Allocator *allocator() { function in namespace:__tsan
63 return reinterpret_cast<Allocator*>(&allocator_placeholder);
114 allocator()->Init(common_flags()->allocator_may_return_null);
122 allocator()->InitCache(&proc->alloc_cache);
127 allocator()->DestroyCache(&proc->alloc_cache);
132 allocator()->PrintStats();
151 return allocator()->ReturnNullOrDie();
152 void *p = allocator()->Allocate(&thr->proc()->alloc_cache, sz, align)
    [all...]
  /external/clang/test/CodeGenCXX/
exceptions.cpp 10 struct allocator { struct in namespace:test0
11 allocator();
12 allocator(const allocator&);
13 ~allocator();
20 throw allocator();
  /external/libchrome/base/containers/
stack_container.h 20 // This allocator can be used with STL containers to provide a stack buffer
25 // STL likes to make copies of allocators, so the allocator itself can't hold
27 // StackAllocator::Source which contains the data. Copying the allocator
29 // based on our allocator will share the same stack buffer.
39 class StackAllocator : public std::allocator<T> {
41 typedef typename std::allocator<T>::pointer pointer;
42 typedef typename std::allocator<T>::size_type size_type;
44 // Backing store for the allocator. The container owner is responsible for
45 // maintaining this for as long as any containers using this allocator are
70 // Used by containers when they want to refer to an allocator of type U
    [all...]

Completed in 1066 milliseconds

1 2 3 4 5 6 7 891011>>