Searched refs:Alloc (Results 1 - 25 of 35) sorted by relevance

12

/freebsd-10.3-release/contrib/libstdc++/include/ext/pb_ds/detail/
H A Dtypes_traits.hpp58 template<typename Key, typename Mapped, typename Alloc, bool Store_Extra>
61 typedef value_type_base<Key, Mapped, Alloc, Store_Extra> type;
64 template<typename Key, typename Mapped, typename Alloc, bool Store_Extra>
66 : public vt_base_selector<Key, Mapped, Alloc, Store_Extra>::type
68 typedef typename Alloc::template rebind<Key>::other key_allocator;
74 typedef typename Alloc::size_type size_type;
H A Dcontainer_base_dispatch.hpp114 typename Policy_Tl, typename Alloc>
117 template<typename Key, typename Mapped, typename Policy_Tl, typename Alloc>
119 Policy_Tl, Alloc>
128 typedef lu_map_data_<Key, Mapped, at0t, Alloc, at1t> type;
131 template<typename Key, typename Policy_Tl, typename Alloc>
133 Policy_Tl, Alloc>
142 typedef lu_map_no_data_<Key, null_mapped_type, at0t, Alloc, at1t> type;
145 template<typename Key, typename Mapped, typename Policy_Tl, typename Alloc>
146 struct container_base_dispatch<Key, Mapped, pat_trie_tag, Policy_Tl, Alloc>
153 typedef pat_trie_data_<Key, Mapped, at1t, Alloc> typ
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DBlockCounter.h46 Factory(llvm::BumpPtrAllocator& Alloc);
H A DProgramStateTrait.h87 static void *CreateContext(llvm::BumpPtrAllocator& Alloc) { argument
88 return new typename data_type::Factory(Alloc);
138 static void *CreateContext(llvm::BumpPtrAllocator& Alloc) { argument
139 return new typename data_type::Factory(Alloc);
177 static void *CreateContext(llvm::BumpPtrAllocator& Alloc) { argument
178 return new typename data_type::Factory(Alloc);
H A DBasicValueFactory.h82 BasicValueFactory(ASTContext &ctx, llvm::BumpPtrAllocator& Alloc) argument
83 : Ctx(ctx), BPAlloc(Alloc), PersistentSVals(0), PersistentSValPairs(0),
84 SValListFactory(Alloc) {}
H A DCallEvent.h912 llvm::BumpPtrAllocator &Alloc; member in class:clang::ento::CallEventManager
922 return Alloc.Allocate<FunctionCall>();
951 CallEventManager(llvm::BumpPtrAllocator &alloc) : Alloc(alloc) {}
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DBlockCounter.cpp66 BlockCounter::Factory::Factory(llvm::BumpPtrAllocator& Alloc) { argument
67 F = new CountMap::Factory(Alloc);
H A DProgramState.cpp77 CallEventMgr(new CallEventManager(alloc)), Alloc(alloc) {
397 newState = (ProgramState*) Alloc.Allocate<ProgramState>();
478 p.first = CreateContext(Alloc);
/freebsd-10.3-release/contrib/llvm/lib/CodeGen/
H A DLiveRangeCalc.h41 VNInfo::Allocator *Alloc; member in class:llvm::LiveRangeCalc
128 LiveRangeCalc() : MF(0), MRI(0), Indexes(0), DomTree(0), Alloc(0) {}
159 /// single existing value, Alloc may be null.
H A DLiveIntervalUnion.cpp183 void LiveIntervalUnion::Array::init(LiveIntervalUnion::Allocator &Alloc, argument
193 new(LIUs + i) LiveIntervalUnion(Alloc);
H A DLiveRangeCalc.cpp29 Alloc = VNIA;
58 LR.createDeadDef(Idx, *Alloc);
343 assert(Alloc && "Need VNInfo allocator to create PHI-defs");
347 VNInfo *VNI = LR.getNextValue(Start, *Alloc);
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Analysis/Support/
H A DBumpVector.h33 llvm::PointerIntPair<llvm::BumpPtrAllocator*, 1> Alloc; member in class:clang::BumpVectorContext
37 BumpVectorContext() : Alloc(new llvm::BumpPtrAllocator(), 1) {}
42 BumpVectorContext(llvm::BumpPtrAllocator &A) : Alloc(&A, 0) {}
45 if (Alloc.getInt())
46 delete Alloc.getPointer();
49 llvm::BumpPtrAllocator &getAllocator() { return *Alloc.getPointer(); }
/freebsd-10.3-release/contrib/llvm/tools/clang/include/clang/Lex/
H A DPTHManager.h42 /// Alloc - Allocator used for IdentifierInfo objects.
43 llvm::BumpPtrAllocator Alloc; member in class:clang::PTHManager
/freebsd-10.3-release/contrib/llvm/include/llvm/ADT/
H A DImmutableIntervalMap.h97 ImutIntervalAVLFactory(BumpPtrAllocator &Alloc) argument
98 : ImutAVLFactory<ImutInfo>(Alloc) {}
214 Factory(BumpPtrAllocator& Alloc) : F(Alloc) {} argument
H A DImmutableList.h159 ImmutableListFactory(BumpPtrAllocator& Alloc) argument
160 : Allocator(reinterpret_cast<uintptr_t>(&Alloc) | 0x1) {}
H A DImmutableMap.h105 Factory(BumpPtrAllocator& Alloc, bool canonicalize = true) argument
106 : F(Alloc), Canonicalize(canonicalize) {}
H A DImmutableSet.h393 ImutAVLFactory(BumpPtrAllocator& Alloc) argument
394 : Allocator(reinterpret_cast<uintptr_t>(&Alloc) | 0x1) {}
983 Factory(BumpPtrAllocator& Alloc, bool canonicalize = true) argument
984 : F(Alloc), Canonicalize(canonicalize) {}
/freebsd-10.3-release/contrib/llvm/lib/Support/
H A DMemoryBuffer.cpp80 void *operator new(size_t N, const NamedBufferAlloc &Alloc) { argument
81 char *Mem = static_cast<char *>(operator new(N + Alloc.Name.size() + 1));
82 CopyStringRef(Mem + N, Alloc.Name);
/freebsd-10.3-release/contrib/llvm/include/llvm/Support/
H A DYAMLParser.h150 , BumpPtrAllocator &Alloc
152 return Alloc.Allocate(Size, Alignment);
155 void operator delete(void *Ptr, BumpPtrAllocator &Alloc, size_t) throw() { argument
156 Alloc.Deallocate(Ptr);
/freebsd-10.3-release/contrib/libarchive/libarchive/
H A Darchive_ppmd_private.h75 void *(*Alloc)(void *p, size_t size); member in struct:__anon1645
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/CodeGen/
H A DCGDecl.cpp907 llvm::AllocaInst *Alloc = CreateTempAlloca(LTy); local
908 Alloc->setName(D.getName());
914 Alloc->setAlignment(allocaAlignment.getQuantity());
915 DeclPtr = Alloc;
924 llvm::Value *castAddr = Builder.CreateBitCast(Alloc, Int8PtrTy);
1623 llvm::AllocaInst *Alloc = CreateTempAlloca(ConvertTypeForMem(Ty), local
1625 Alloc->setAlignment(getContext().getDeclAlign(&D).getQuantity());
1626 LValue lv = MakeAddrLValue(Alloc, Ty, getContext().getDeclAlign(&D));
1628 LocalAddr = Builder.CreateLoad(Alloc);
1658 llvm::AllocaInst *Alloc local
[all...]
/freebsd-10.3-release/contrib/llvm/tools/clang/lib/Sema/
H A DAttributeList.cpp62 return Alloc.Allocate(size, llvm::AlignOf<AttributeFactory>::Alignment);
H A DSemaExprCXX.cpp1822 for (LookupResult::iterator Alloc = R.begin(), AllocEnd = R.end();
1823 Alloc != AllocEnd; ++Alloc) {
1826 NamedDecl *D = (*Alloc)->getUnderlyingDecl();
1829 AddTemplateOverloadCandidate(FnTemplate, Alloc.getPair(),
1837 AddOverloadCandidate(Fn, Alloc.getPair(), Args, Candidates,
2016 for (DeclContext::lookup_iterator Alloc = R.begin(), AllocEnd = R.end();
2017 Alloc != AllocEnd; ++Alloc) {
2020 if (FunctionDecl *Func = dyn_cast<FunctionDecl>(*Alloc)) {
2071 FunctionDecl *Alloc = local
[all...]
/freebsd-10.3-release/contrib/llvm/lib/MC/MCParser/
H A DCOFFAsmParser.cpp158 Alloc = 1 << 0, enumerator in enum:__anon2400
178 SecFlags |= Alloc;
186 if (SecFlags & Alloc)
245 if ((SecFlags & Alloc) && (SecFlags & Load) == 0)
/freebsd-10.3-release/contrib/llvm/lib/IR/
H A DConstantsContext.h397 template<typename T, typename Alloc>
398 struct ConstantTraits< std::vector<T, Alloc> > {
399 static unsigned uses(const std::vector<T, Alloc>& v) {

Completed in 276 milliseconds

12