Searched refs:Allocate (Results 26 - 50 of 127) sorted by relevance

123456

/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Sema/
H A DParsedTemplate.h185 Allocate(unsigned NumArgs, SmallVectorImpl<TemplateIdAnnotation*> &List) { function in struct:clang::TemplateIdAnnotation
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/AST/
H A DCommentCommandTraits.cpp85 char *Name = Allocator.Allocate<char>(CommandName.size() + 1);
H A DCommentLexer.cpp34 char *Resolved = Allocator.Allocate<char>(UNI_MAX_UTF8_BYTES_PER_CODE_POINT);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Sema/
H A DTypeLocBuilder.h123 void *Mem = Context.Allocate(FullDataSize);
H A DAttributeList.cpp66 return Alloc.Allocate(size, llvm::AlignOf<AttributeFactory>::Alignment);
H A DCodeCompleteConsumer.cpp260 char *Mem = (char *)Allocate(Ref.size() + 1, 1);
329 void *Mem = getAllocator().Allocate(
/freebsd-11.0-release/contrib/compiler-rt/lib/asan/
H A Dasan_fake_stack.h52 // Allocate() flips the appropriate allocation flag atomically, thus achieving
120 // Allocate the fake frame.
121 FakeFrame *Allocate(uptr stack_size_log, uptr class_id, uptr real_stack);
H A Dasan_fake_stack.cc88 FakeFrame *FakeStack::Allocate(uptr stack_size_log, uptr class_id, function in class:__asan::FakeStack
207 FakeFrame *ff = fs->Allocate(fs->stack_size_log(), class_id, real_stack);
/freebsd-11.0-release/contrib/compiler-rt/lib/lsan/
H A Dlsan_allocator.cc88 void *Allocate(const StackTrace &stack, uptr size, uptr alignment, function in namespace:__lsan
96 void *p = allocator.Allocate(&cache, size, alignment, false);
/freebsd-11.0-release/contrib/compiler-rt/lib/msan/
H A Dmsan_allocator.cc121 allocated = allocator.Allocate(cache, size, alignment, false);
125 allocated = allocator.Allocate(cache, size, alignment, false);
/freebsd-11.0-release/contrib/llvm/lib/CodeGen/
H A DScheduleDAG.cpp490 Allocate(SU->NodeNum, --Id);
588 Allocate(w, i - shift);
593 Allocate(L[j], i - shift);
631 /// Allocate - assign the topological index to the node n.
632 void ScheduleDAGTopologicalSort::Allocate(int n, int index) {
H A DMachineFunction.cpp211 /// Allocate a new MachineInstr. Use this instead of `new MachineInstr'.
215 return new (InstructionRecycler.Allocate<MachineInstr>(Allocator))
223 return new (InstructionRecycler.Allocate<MachineInstr>(Allocator))
243 /// Allocate a new MachineBasicBlock. Use this instead of
247 return new (BasicBlockRecycler.Allocate<MachineBasicBlock>(Allocator))
286 return Allocator.Allocate<MachineMemOperand *>(Num);
298 // Allocate a new array and populate it with the load information.
330 // Allocate a new array and populate it with the store information.
354 char *Dest = Allocator.Allocate<char>(Name.size() + 1);
/freebsd-11.0-release/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_quarantine.h40 // void *cb.Allocate(uptr size);
175 QuarantineBatch *b = (QuarantineBatch *)cb.Allocate(sizeof(*b));
H A Dsanitizer_allocator.h560 b = (Batch*)c->Allocate(this, SizeClassMap::ClassID(sizeof(Batch)));
880 b = (Batch*)c->Allocate(this, SizeClassMap::ClassID(sizeof(Batch)));
922 void *Allocate(SizeClassAllocator *allocator, uptr class_id) { function in struct:__sanitizer::SizeClassAllocatorLocalCache
993 b = (Batch*)Allocate(allocator, SizeClassMap::ClassID(sizeof(Batch)));
1024 void *Allocate(AllocatorStats *stat, uptr size, uptr alignment) { function in class:__sanitizer::LargeMmapAllocator
1156 // Do one-time sort. chunks_sorted_ is reset in Allocate/Deallocate.
1286 void *Allocate(AllocatorCache *cache, uptr size, uptr alignment, function in class:__sanitizer::CombinedAllocator
1300 res = cache->Allocate(&primary_, primary_.ClassID(size));
1302 res = secondary_.Allocate(&stats_, size, alignment);
1345 return Allocate(cach
[all...]
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp253 V = G.getAllocator().Allocate<ExplodedNodeVector>();
318 // Allocate a new node.
319 V = (NodeTy*) getAllocator().Allocate<NodeTy>();
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Basic/
H A DPartialDiagnostic.h88 /// \brief Allocate new storage.
89 Storage *Allocate() { function in class:clang::PartialDiagnostic::StorageAllocator
131 DiagStorage = Allocator->Allocate();
H A DIdentifierTable.h475 void *Mem = getAllocator().Allocate<IdentifierInfo>();
506 void *Mem = getAllocator().Allocate<IdentifierInfo>();
/freebsd-11.0-release/contrib/llvm/include/llvm/CodeGen/
H A DMachineFunction.h84 return new (Allocator.Allocate<Ty>()) Ty(MF);
420 /// CreateMachineInstr - Allocate a new MachineInstr. Use this instead
439 /// CreateMachineBasicBlock - Allocate a new MachineBasicBlock. Use this
448 /// getMachineMemOperand - Allocate a new MachineMemOperand.
457 /// getMachineMemOperand - Allocate a new MachineMemOperand by copying
466 /// Allocate an array of MachineOperands. This is only intended for use by
479 /// \brief Allocate and initialize a register mask with @p NumRegister bits.
482 uint32_t *Mask = Allocator.Allocate<uint32_t>(Size);
488 /// allocateMemRefsArray - Allocate an array to hold MachineMemOperand
492 /// extractLoadMemRefs - Allocate a
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRForTarget.h642 lldb::addr_t Allocate();
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Lex/
H A DMacroInfo.cpp241 void *Mem = PP.getPreprocessorAllocator().Allocate(
/freebsd-11.0-release/contrib/llvm/include/llvm/ADT/
H A DImmutableList.h178 L = (ListTy*) A.Allocate<ListTy>();
H A DScopedHashTable.h65 ScopedHashTableVal *New = Allocator.template Allocate<ScopedHashTableVal>();
/freebsd-11.0-release/contrib/llvm/tools/clang/include/clang/Analysis/Support/
H A DBumpVector.h227 // Allocate the memory from the BumpPtrAllocator.
228 T *NewElts = C.getAllocator().template Allocate<T>(NewCapacity);
/freebsd-11.0-release/contrib/compiler-rt/lib/tsan/rtl/
H A Dtsan_mman.cc101 void *p = allocator()->Allocate(&thr->alloc_cache, sz, align);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Parse/
H A DParsePragma.cpp1045 (PragmaPackInfo*) PP.getPreprocessorAllocator().Allocate(
1055 (Token*) PP.getPreprocessorAllocator().Allocate(
1100 (Token*) PP.getPreprocessorAllocator().Allocate(
1171 (Token*) PP.getPreprocessorAllocator().Allocate(
1264 (Token*) PP.getPreprocessorAllocator().Allocate(
1315 (Token*) PP.getPreprocessorAllocator().Allocate(
1328 (Token*) PP.getPreprocessorAllocator().Allocate(
1374 (Token*) PP.getPreprocessorAllocator().Allocate(
1397 (Token*) PP.getPreprocessorAllocator().Allocate(
1456 (Token*) PP.getPreprocessorAllocator().Allocate(
[all...]

Completed in 376 milliseconds

123456