HomeSort by relevance Sort by last modified time
    Searched refs:allocator (Results 251 - 275 of 1347) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.7/include/ext/pb_ds/
list_update_policy.hpp 57 template<typename _Alloc = std::allocator<char> >
92 template<std::size_t Max_Count = 5, typename _Alloc = std::allocator<char> >
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/ext/pb_ds/
list_update_policy.hpp 56 template<typename _Alloc = std::allocator<char> >
91 template<std::size_t Max_Count = 5, typename _Alloc = std::allocator<char> >
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/
list_update_policy.hpp 56 template<typename _Alloc = std::allocator<char> >
91 template<std::size_t Max_Count = 5, typename _Alloc = std::allocator<char> >
  /external/chromium_org/media/cdm/ppapi/
cdm_helpers.cc 27 PpbBufferAllocator* allocator) {
31 PP_DCHECK(allocator);
32 return new PpbBuffer(buffer, buffer_id, allocator);
68 PpbBufferAllocator* allocator)
69 : buffer_(buffer), buffer_id_(buffer_id), size_(0), allocator_(allocator) {
  /external/clang/test/CodeGenCXX/
destructors.cpp 40 struct allocator { struct in namespace:PR7526
41 ~allocator() throw();
44 struct allocator_derived : allocator { };
49 // CHECK-LABEL: define void @_ZN6PR75269allocatorD2Ev(%"struct.PR7526::allocator"* %this) unnamed_addr
51 allocator::~allocator() throw() { foo(); }
eh.cpp 93 template <class T> struct allocator { struct in namespace:test6
94 ~allocator() throw() { }
98 allocator<int> a;
  /art/runtime/gc/
heap-inl.h 40 size_t byte_count, AllocatorType allocator,
49 // Need to check that we arent the large object allocator since the large object allocation code
69 if (allocator == kAllocatorTypeTLAB) {
73 if (allocator == kAllocatorTypeTLAB && byte_count <= self->TlabSize()) {
88 obj = TryToAllocate<kInstrumented, false>(self, allocator, byte_count, &bytes_allocated,
91 bool is_current_allocator = allocator == GetCurrentAllocator();
92 obj = AllocateInternalWithGc(self, allocator, byte_count, &bytes_allocated, &usable_size,
95 bool after_is_current_allocator = allocator == GetCurrentAllocator();
99 // If the allocator changed, we need to restart the allocation.
114 if (collector::SemiSpace::kUseRememberedSet && UNLIKELY(allocator == kAllocatorTypeNonMoving))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
PartitionAllocTest.cpp 54 static SizeSpecificPartitionAllocator<kTestMaxAllocation> allocator; member in namespace:__anon16061
70 allocator.init();
79 partitionDumpStats(*allocator.root());
84 EXPECT_TRUE(allocator.shutdown());
92 WTF::PartitionBucket* bucket = &allocator.root()->buckets()[bucketIdx];
98 void* ptr = partitionAlloc(allocator.root(), size);
132 WTF::PartitionBucket* bucket = &allocator.root()->buckets()[bucketIdx];
136 void* ptr = partitionAlloc(allocator.root(), size);
161 WTF::PartitionBucket* bucket = &allocator.root()->buckets()[kTestBucketIndex];
168 void* ptr = partitionAlloc(allocator.root(), kTestAllocSize)
    [all...]
  /art/runtime/gc/space/
rosalloc_space.cc 42 // template class ValgrindMallocSpace<RosAllocSpace, allocator::RosAlloc*>;
45 art::gc::allocator::RosAlloc* rosalloc, byte* begin, byte* end,
59 allocator::RosAlloc* rosalloc = CreateRosAlloc(mem_map->Begin(), starting_size, initial_size,
125 allocator::RosAlloc* RosAllocSpace::CreateRosAlloc(void* begin, size_t morecore_start,
133 allocator::RosAlloc* rosalloc = new art::gc::allocator::RosAlloc(
136 art::gc::allocator::RosAlloc::kPageReleaseModeAll :
137 art::gc::allocator::RosAlloc::kPageReleaseModeSizeAndEnd);
166 MallocSpace* RosAllocSpace::CreateInstance(const std::string& name, MemMap* mem_map, void* allocator,
169 return new RosAllocSpace(name, mem_map, reinterpret_cast<allocator::RosAlloc*>(allocator)
    [all...]
  /external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/
SkPdfNativeTokenizer.cpp 79 SkPdfAllocator* allocator, SkPdfNativeDoc* doc) {
83 if (allocator == NULL) {
103 SkPdfNativeObject* newObj = allocator->allocObject();
104 start = nextObject(start, end, newObj, allocator, doc);
249 SkPdfNativeObject* str, SkPdfAllocator* allocator) {
250 if (!allocator) {
256 unsigned char* out = (unsigned char*)allocator->alloc(outLength);
398 static const unsigned char* readHexString(const unsigned char* start, const unsigned char* end, SkPdfNativeObject* str, SkPdfAllocator* allocator) {
399 if (!allocator) {
404 unsigned char* out = (unsigned char*)allocator->alloc(outLength)
    [all...]
SkPdfNativeTokenizer.h 90 * An allocator only allocates memory, and it deletes it all when the allocator is destroyed.
116 // Returns the number of bytes used in this allocator.
161 SkPdfAllocator* allocator, SkPdfNativeDoc* doc);
163 SkPdfAllocator* allocator, SkPdfNativeDoc* doc);
198 SkPdfAllocator* allocator,
  /external/skia/experimental/PdfViewer/pdfparser/native/
SkPdfNativeTokenizer.cpp 79 SkPdfAllocator* allocator, SkPdfNativeDoc* doc) {
83 if (allocator == NULL) {
103 SkPdfNativeObject* newObj = allocator->allocObject();
104 start = nextObject(start, end, newObj, allocator, doc);
249 SkPdfNativeObject* str, SkPdfAllocator* allocator) {
250 if (!allocator) {
256 unsigned char* out = (unsigned char*)allocator->alloc(outLength);
398 static const unsigned char* readHexString(const unsigned char* start, const unsigned char* end, SkPdfNativeObject* str, SkPdfAllocator* allocator) {
399 if (!allocator) {
404 unsigned char* out = (unsigned char*)allocator->alloc(outLength)
    [all...]
SkPdfNativeTokenizer.h 90 * An allocator only allocates memory, and it deletes it all when the allocator is destroyed.
116 // Returns the number of bytes used in this allocator.
161 SkPdfAllocator* allocator, SkPdfNativeDoc* doc);
163 SkPdfAllocator* allocator, SkPdfNativeDoc* doc);
198 SkPdfAllocator* allocator,
  /external/chromium_org/third_party/skia/src/gpu/
GrAllocator.h 21 * Create an allocator
131 * Iterates through the allocator. This is faster than using operator[] when walking linearly
132 * through the allocator.
139 Iter(const GrAllocator* allocator)
140 : fAllocator(allocator)
142 , fIndexInBlock(allocator->fItemsPerBlock - 1)
235 * Create an allocator
307 * Iterates through the allocator. This is faster than using operator[] when walking linearly
308 * through the allocator.
315 Iter(const GrTAllocator* allocator) : fImpl(&allocator->fAllocator) {
    [all...]
  /external/compiler-rt/lib/asan/
asan_allocator2.cc 12 // Implementation of ASan's memory allocator, 2-nd version.
13 // This variant uses the allocator from sanitizer_common, i.e. the one shared
60 static Allocator allocator; member in namespace:__asan
68 // Every chunk of memory allocated by this allocator can be in one of 3 states:
107 // The memory chunk allocated from the underlying allocator looks like this:
160 allocator.GetMetaData(AllocBeg(locked_version)));
165 return allocator.GetBlockBeginFastLocked(
167 return allocator.GetBlockBegin(reinterpret_cast<void *>(this));
249 // Clear the magic value, as allocator internals may overwrite th
    [all...]
  /art/compiler/optimizing/
linearize_test.cc 38 ArenaAllocator allocator(&pool);
39 HGraphBuilder builder(&allocator);
48 CodeGenerator* codegen = CodeGenerator::Create(&allocator, graph, InstructionSet::kX86);
optimizing_compiler.cc 128 CodeVectorAllocator allocator; local
147 codegen->CompileOptimized(&allocator);
151 codegen->CompileBaseline(&allocator);
172 ArrayRef<const uint8_t>(allocator.GetMemory()),
  /art/compiler/utils/
scoped_arena_allocator.h 104 // the allocator is not exactly a C++ block scope. For example, an optimization
105 // pass can create the scoped allocator in Start() and destroy it in End().
108 ScopedArenaAllocator* allocator = new(addr) ScopedArenaAllocator(arena_stack); local
109 allocator->mark_ptr_ = reinterpret_cast<uint8_t*>(addr);
110 return allocator;
  /external/chromium_org/remoting/test/
fake_port_allocator.cc 19 cricket::HttpPortAllocatorBase* allocator,
38 cricket::HttpPortAllocatorBase* allocator,
46 : HttpPortAllocatorSessionBase(allocator,
  /external/clang/test/Index/
index-templates.cpp 6 template<typename T> class allocator;
8 template<typename T, typename Alloc = allocator<T> >
93 typename Allocator = allocator<Pair<Key, Value> > >
113 // CHECK-LOAD: index-templates.cpp:6:28: ClassTemplate=allocator:6:28 Extent=[6:1 - 6:37]
118 // CHECK-LOAD: index-templates.cpp:8:39: TemplateRef=allocator:6:28 Extent=[8:39 - 8:48]
189 // CHECK-USRS: index-templates.cpp c:@CT>1#T@allocator Extent=[6:1 - 6:37]
198 // CHECK-USRS: index-templates.cpp c:@C@vector>#$@S@Z1#$@C@allocator>#S0_ Extent=[18:1 - 18:26]
200 // CHECK-USRS: index-templates.cpp c:@C@vector>#$@S@Z2#$@C@allocator>#S0_ Extent=[22:1 - 25:2]
201 // CHECK-USRS: index-templates.cpp c:@C@vector>#$@S@Z2#$@C@allocator>#S0_@F@clear# Extent=[24:3 - 24:15
    [all...]
  /external/clang/test/SemaTemplate/
issue150.cpp 75 template<typename > struct allocator ;
89 template<class> class = allocator> class IntervalSet>
98 template<class> class = allocator> class IntervalSet>
  /frameworks/base/libs/hwui/
Snapshot.h 46 /** static void* operator new(size_t size); PURPOSELY OMITTED, allocator only **/
47 static void* operator new(size_t size, LinearAllocator& allocator) {
48 return allocator.alloc(size);
173 void setClippingRoundRect(LinearAllocator& allocator, const Rect& bounds,
  /external/chromium_org/gpu/command_buffer/client/
fenced_allocator_test.cc 266 // Tell the allocator to update what's available based on the current token.
285 // Tell the allocator to update what's available based on the current token.
418 scoped_ptr<FencedAllocator> allocator(
424 FencedAllocator::Offset mem1 = allocator->Alloc(kAllocSize);
425 FencedAllocator::Offset mem2 = allocator->Alloc(kAllocSize);
428 EXPECT_TRUE(allocator->CheckConsistency());
429 EXPECT_EQ(allocator->bytes_in_use(), kAllocSize * 2);
433 allocator->FreeUnused();
434 EXPECT_TRUE(allocator->CheckConsistency());
435 EXPECT_EQ(allocator->bytes_in_use(), kAllocSize * 2)
    [all...]
  /external/chromium_org/base/allocator/
allocator_extension.cc 5 #include "base/allocator/allocator_extension.h"
10 namespace allocator { namespace in namespace:base
55 } // namespace allocator
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
rawtransport.h 45 PortAllocator* allocator);

Completed in 1587 milliseconds

<<11121314151617181920>>