Searched refs:Allocate (Results 1 - 25 of 168) sorted by relevance

1234567

/external/clang/test/Index/
H A Dindex-file.cpp4 template < typename T > *Allocate() { } function
/external/clang/test/CXX/temp/temp.spec/temp.inst/
H A Dp11.cpp9 void Allocate(unsigned Alignment function in struct:test0::A
13 void f1(A<int> x) { x.Allocate(); }
/external/llvm/unittests/Support/
H A DAllocatorTest.cpp20 int *a = (int*)Alloc.Allocate(sizeof(int), 0);
21 int *b = (int*)Alloc.Allocate(sizeof(int) * 10, 0);
22 int *c = (int*)Alloc.Allocate(sizeof(int), 0);
34 // Allocate enough bytes to create three slabs.
37 Alloc.Allocate(3000, 0);
39 Alloc.Allocate(3000, 0);
41 Alloc.Allocate(3000, 0);
45 // Allocate enough bytes to create two slabs, reset the allocator, and do it
49 Alloc.Allocate(3000, 0);
51 Alloc.Allocate(300
111 virtual MemSlab *Allocate(size_t Size) { function in class:__anon10098::MockSlabAllocator
[all...]
/external/llvm/include/llvm/Support/
H A DAllocator.h36 void *Allocate(size_t Size, size_t /*Alignment*/) { return malloc(Size); } function in class:llvm::MallocAllocator
39 T *Allocate() { return static_cast<T*>(malloc(sizeof(T))); } function in class:llvm::MallocAllocator
42 T *Allocate(size_t Num) { function in class:llvm::MallocAllocator
67 virtual MemSlab *Allocate(size_t Size) = 0;
82 virtual MemSlab *Allocate(size_t Size) LLVM_OVERRIDE;
94 /// SlabSize - Allocate data into slabs of this size unless we get an
128 /// StartNewSlab - Allocate a new slab and move the bump pointers over into
148 /// Allocate - Allocate space at the specified alignment.
150 void *Allocate(size_
155 T *Allocate() { function in class:llvm::BumpPtrAllocator
162 T *Allocate(size_t Num) { function in class:llvm::BumpPtrAllocator
169 T *Allocate(size_t Num, size_t Alignment) { function in class:llvm::BumpPtrAllocator
219 T *Allocate(size_t num = 1) { function in class:llvm::SpecificBumpPtrAllocator
[all...]
H A DRecyclingAllocator.h40 /// Allocate - Return a pointer to storage for an object of type
44 SubClass *Allocate() { return Base.template Allocate<SubClass>(Allocator); } function in class:llvm::RecyclingAllocator
46 T *Allocate() { return Base.Allocate(Allocator); } function in class:llvm::RecyclingAllocator
63 return Allocator.Allocate();
H A DRecycler.h102 SubClass *Allocate(AllocatorType &Allocator) { function in class:llvm::Recycler
109 static_cast<SubClass *>(Allocator.Allocate(Size, Align));
113 T *Allocate(AllocatorType &Allocator) { function in class:llvm::Recycler
114 return Allocate<T>(Allocator);
H A DPredIteratorCache.h51 Entry = Memory.Allocate<BasicBlock*>(PredCache.size());
/external/opencv/
H A DWLNonFileByteStream.h41 void Allocate(int data_size);
H A DWLNonFileByteStream.cpp33 void WLNonFileByteStream::Allocate(int data_size) function in class:WLNonFileByteStream
54 Allocate(data_size);
/external/clang/lib/AST/
H A DDeclGroup.cpp23 void* Mem = C.Allocate(Size, llvm::AlignOf<DeclGroup>::Alignment);
H A DExprCXX.cpp240 void *Mem = C.Allocate(sizeof(UnresolvedLookupExpr) +
256 void *Mem = C.Allocate(size, llvm::alignOf<UnresolvedLookupExpr>());
300 C.Allocate(sizeof(DeclAccessPair) * NumResults,
341 C.Allocate(sizeof(DeclAccessPair) * NumResults,
400 void *Mem = C.Allocate(size);
412 void *Mem = C.Allocate(size);
533 void *Buffer = C.Allocate(sizeof(CXXStaticCastExpr)
545 C.Allocate(sizeof(CXXStaticCastExpr) + PathSize * sizeof(CXXBaseSpecifier*));
558 void *Buffer = C.Allocate(sizeof(CXXDynamicCastExpr)
570 C.Allocate(sizeo
[all...]
H A DDeclFriend.cpp51 void *Mem = C.Allocate(Size);
/external/compiler-rt/lib/sanitizer_common/tests/
H A Dsanitizer_allocator_testlib.cc76 void *p = allocator.Allocate(&cache, size, 8);
92 void *p = allocator.Allocate(&cache, size, 8, false);
114 void *p = allocator.Allocate(&cache, size, alignment);
122 *memptr = allocator.Allocate(&cache, size, alignment);
132 void *p = allocator.Allocate(&cache, size, GetPageSizeCached());
H A Dsanitizer_allocator_test.cc77 // Allocate a bunch of chunks.
86 char *x = (char*)cache.Allocate(a, class_id0);
155 void *x = cache.Allocate(a, 1 + i % 50);
246 void *x = a.Allocate(&stats, 1 << 20, 1);
283 // Allocate some.
285 allocated[i] = (char *)a.Allocate(&stats, size, 1);
298 // Allocate some more, also add metadata.
300 char *x = (char *)a.Allocate(&stats, size, 1);
329 char *p = allocated[i] = (char *)a.Allocate(&stats, size, alignment);
355 EXPECT_EQ(a->Allocate(
[all...]
/external/llvm/lib/Support/
H A DAllocator.cpp45 /// StartNewSlab - Allocate a new slab and move the bump pointers over into
54 MemSlab *NewSlab = Allocator.Allocate(SlabSize);
89 /// Allocate - Allocate space at the specified alignment.
91 void *BumpPtrAllocator::Allocate(size_t Size, size_t Alignment) { function in class:llvm::BumpPtrAllocator
101 // Allocate the aligned space, going forwards from CurPtr.
117 MemSlab *NewSlab = Allocator.Allocate(PaddedSize);
177 MemSlab *MallocSlabAllocator::Allocate(size_t Size) { function in class:llvm::MallocSlabAllocator
178 MemSlab *Slab = (MemSlab*)Allocator.Allocate(Size, 0);
/external/chromium/base/win/
H A Dscoped_bstr.h46 BSTR Allocate(const char16* str);
H A Dscoped_bstr.cc46 BSTR ScopedBstr::Allocate(const char16* str) { function in class:base::win::ScopedBstr
/external/openfst/src/include/fst/
H A Dmapped-file.h65 static MappedFile* Allocate(size_t size);
/external/clang/lib/StaticAnalyzer/Core/
H A DBasicValueFactory.cpp81 P = (FoldNodeTy*) BPAlloc.Allocate<FoldNodeTy>();
118 D = (CompoundValData*) BPAlloc.Allocate<CompoundValData>();
137 D = (LazyCompoundValData*) BPAlloc.Allocate<LazyCompoundValData>();
253 P = (FoldNodeTy*) BPAlloc.Allocate<FoldNodeTy>();
278 P = (FoldNodeTy*) BPAlloc.Allocate<FoldNodeTy>();
H A DSymbolManager.cpp158 SD = (SymExpr*) BPAlloc.Allocate<SymbolRegionValue>();
177 SD = (SymExpr*) BPAlloc.Allocate<SymbolConjured>();
195 SD = (SymExpr*) BPAlloc.Allocate<SymbolDerived>();
211 SD = (SymExpr*) BPAlloc.Allocate<SymbolExtent>();
229 SD = (SymExpr*) BPAlloc.Allocate<SymbolMetadata>();
246 data = (SymbolCast*) BPAlloc.Allocate<SymbolCast>();
264 data = (SymIntExpr*) BPAlloc.Allocate<SymIntExpr>();
282 data = (IntSymExpr*) BPAlloc.Allocate<IntSymExpr>();
300 data = (SymSymExpr*) BPAlloc.Allocate<SymSymExpr>();
/external/openfst/src/lib/
H A Dmapped-file.cc45 MappedFile* MappedFile::Allocate(size_t size) { function in class:fst::MappedFile
97 MappedFile* mf = Allocate(size);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_allocator.cc55 void *LowLevelAllocator::Allocate(uptr size) { function in class:__sanitizer::LowLevelAllocator
H A Dsanitizer_flags.cc92 char *value_copy = (char*)(allocator_for_flags.Allocate(value_length + 1));
/external/compiler-rt/lib/asan/
H A Dasan_allocator2.cc284 void *Allocate(uptr size) { function in struct:__asan::QuarantineCallback
285 return allocator.Allocate(cache_, size, 1, false);
300 static void *Allocate(uptr size, uptr alignment, StackTrace *stack, function in namespace:__asan
343 allocated = allocator.Allocate(cache, needed_size, 8, false);
347 allocated = allocator.Allocate(cache, needed_size, 8, false);
486 void *new_ptr = Allocate(new_size, 8, stack, FROM_MALLOC);
591 return Allocate(size, alignment, stack, alloc_type);
601 return Allocate(size, 8, stack, FROM_MALLOC);
606 void *ptr = Allocate(nmemb * size, 8, stack, FROM_MALLOC);
616 return Allocate(siz
[all...]
H A Dasan_globals.cc80 (ListOfGlobals*)allocator_for_globals.Allocate(sizeof(ListOfGlobals));
85 l = (ListOfGlobals*)allocator_for_globals.Allocate(sizeof(ListOfGlobals));

Completed in 686 milliseconds

1234567