HomeSort by relevance Sort by last modified time
    Searched refs:allocator (Results 151 - 175 of 1087) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/libchrome/base/allocator/
allocator_extension.cc 5 #include "base/allocator/allocator_extension.h"
10 namespace allocator { namespace in namespace:base
39 } // namespace allocator
  /external/libcxx/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> >();
  /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);
Snapshot.h 48 static void* operator new(size_t size, LinearAllocator& allocator) {
49 return allocator.alloc<RoundRectClipState>(size);
70 static void* operator new(size_t size, LinearAllocator& allocator) {
71 return allocator.alloc<ProjectionPathMask>(size);
173 WARN_UNUSED_RESULT const ClipBase* serializeIntersectedClip(LinearAllocator& allocator,
204 void setClippingRoundRect(LinearAllocator& allocator, const Rect& bounds,
210 void setProjectionPathMask(LinearAllocator& allocator, const SkPath* path);
  /ndk/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> >();
  /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()) {}
  /external/v8/src/ast/
modules.cc 18 ZoneAllocationPolicy allocator(zone);
23 ZoneHashMap::kDefaultHashMapCapacity, allocator);
27 exports_->LookupOrInsert(key, export_name->hash(), allocator);
  /external/v8/test/cctest/wasm/
test-run-wasm-module.cc 46 v8::base::AccountingAllocator allocator; local
47 Zone zone(&allocator);
60 v8::base::AccountingAllocator allocator; local
61 Zone zone(&allocator);
86 v8::base::AccountingAllocator allocator; local
87 Zone zone(&allocator);
107 v8::base::AccountingAllocator allocator; local
108 Zone zone(&allocator);
131 v8::base::AccountingAllocator allocator; local
132 Zone zone(&allocator);
155 v8::base::AccountingAllocator allocator; local
    [all...]
  /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...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/ptr2d/
gpumat.hpp 66 __host__ GpuMat_(Allocator* allocator = defaultAllocator());
69 __host__ GpuMat_(int arows, int acols, Allocator* allocator = defaultAllocator());
70 __host__ explicit GpuMat_(Size asize, Allocator* allocator = defaultAllocator());
73 __host__ GpuMat_(int arows, int acols, Scalar val, Allocator* allocator = defaultAllocator());
74 __host__ GpuMat_(Size asize, Scalar val, Allocator* allocator = defaultAllocator())
    [all...]
  /system/bt/osi/src/
eager_reader.c 48 const allocator_t *allocator; member in struct:eager_reader_t
67 const allocator_t *allocator,
73 assert(allocator != NULL);
80 ret->allocator = allocator;
134 reader->allocator->free(reader->current_buffer);
136 fixed_queue_free(reader->buffers, reader->allocator->free);
196 reader->allocator->free(reader->current_buffer);
241 data_buffer_t *buffer = (data_buffer_t *)reader->allocator->alloc(reader->buffer_size + sizeof(data_buffer_t));
267 reader->allocator->free(buffer)
    [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...]
  /external/skia/src/core/
SkSpriteBlitter4f.cpp 65 SkTBlitterAllocator* allocator) {
66 SkASSERT(allocator != nullptr);
75 return allocator->createT<Sprite_F16>(source, paint);
115 SkTBlitterAllocator* allocator) {
116 SkASSERT(allocator != nullptr);
125 return allocator->createT<Sprite_sRGB>(source, paint);
  /external/deqp/external/vulkancts/modules/vulkan/draw/
vktDrawImageObjectUtil.hpp 69 vk::Allocator& allocator,
73 vk::Allocator& allocator,
83 vk::Allocator& allocator,
92 vk::Allocator& allocator,
111 vk::Allocator& allocator,
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/dynamic_state/
vktDynamicStateImageObjectUtil.hpp 70 vk::Allocator& allocator,
74 vk::Allocator& allocator,
84 vk::Allocator& allocator,
93 vk::Allocator& allocator,
112 vk::Allocator& allocator,
    [all...]
  /external/dng_sdk/source/
dng_filter_task.cpp 60 dng_memory_allocator *allocator,
74 fSrcBuffer [threadIndex] . Reset (allocator->Allocate (srcBufferSize));
76 fDstBuffer [threadIndex] . Reset (allocator->Allocate (dstBufferSize));
  /external/libchrome/base/trace_event/
malloc_dump_provider.cc 9 #include "base/allocator/allocator_extension.h"
44 allocator::GetNumericProperty("generic.heap_size", &total_virtual_size);
46 res = allocator::GetNumericProperty("generic.total_physical_bytes",
49 res = allocator::GetNumericProperty("generic.current_allocated_bytes",
  /frameworks/base/libs/hwui/tests/unit/
SnapshotTests.cpp 32 LinearAllocator allocator; local
35 auto intersectWithChild = child->serializeIntersectedClip(allocator,
43 auto intersectWithRoot = child->serializeIntersectedClip(allocator,
  /ndk/sources/cxx-stl/stlport/src/
message_facets.h 44 allocator<pair<_STLP_CONST nl_catd_type, locale> > > map_type;
79 allocator<pair<_STLP_CONST messages_base::catalog, nl_catd_type> > > map_type;
81 allocator<pair<_STLP_CONST nl_catd_type, messages_base::catalog> > > rmap_type;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_iostream_string.h 18 * The only diference rely on the allocator used to instanciate the basic_string.
20 * that could occur when requesting a big float ouput for instance. This allocator
41 class __iostring_allocator : public allocator<_CharT> {
47 typedef allocator<_CharT> _Base;
76 * As the __iostring_allocator allocator will only be used in the basic_string implementation
99 * A consequence of the non standard conformant allocator is that a string using it
100 * must always be presized to the allocator static buffer size because the basic_string implementation
101 * do not manage an allocator returning always the same memory adress as long as the
132 # define _STLP_BASIC_IOSTRING(_CharT) basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> >
  /prebuilts/ndk/current/sources/cxx-stl/stlport/stlport/stl/
_iostream_string.h 18 * The only diference rely on the allocator used to instanciate the basic_string.
20 * that could occur when requesting a big float ouput for instance. This allocator
41 class __iostring_allocator : public allocator<_CharT> {
47 typedef allocator<_CharT> _Base;
76 * As the __iostring_allocator allocator will only be used in the basic_string implementation
99 * A consequence of the non standard conformant allocator is that a string using it
100 * must always be presized to the allocator static buffer size because the basic_string implementation
101 * do not manage an allocator returning always the same memory adress as long as the
132 # define _STLP_BASIC_IOSTRING(_CharT) basic_string<_CharT, char_traits<_CharT>, allocator<_CharT> >

Completed in 1999 milliseconds

1 2 3 4 5 67 8 91011>>