Searched refs:Alloc (Results 151 - 175 of 188) sorted by relevance

12345678

/external/protobuf/src/google/protobuf/
H A Dmap.h958 Node* node = Alloc<Node>(1);
977 Node* node = Alloc<Node>(1);
1287 U* Alloc(size_type n) { function in class:google::protobuf::Map::InnerMap
1313 void** result = Alloc<void*>(n);
/external/tinyxml2/
H A Dtinyxml2.cpp490 returnNode = new (commentPool.Alloc()) XMLDeclaration( this );
495 returnNode = new (commentPool.Alloc()) XMLComment( this );
500 XMLText* text = new (textPool.Alloc()) XMLText( this );
507 returnNode = new (commentPool.Alloc()) XMLUnknown( this );
512 returnNode = new (elementPool.Alloc()) XMLElement( this );
517 returnNode = new (textPool.Alloc()) XMLText( this );
1246 attrib = new (document->attributePool.Alloc() ) XMLAttribute();
1294 XMLAttribute* attrib = new (document->attributePool.Alloc() ) XMLAttribute();
1465 XMLElement* ele = new (elementPool.Alloc()) XMLElement( this );
1474 XMLComment* comment = new (commentPool.Alloc()) XMLCommen
[all...]
H A Dtinyxml2.h238 virtual void* Alloc() = 0;
261 virtual void* Alloc() { function in class:tinyxml2::MemPoolT
/external/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTraverse.h211 R_SExpr reduceAlloc(Alloc &Orig, R_SExpr E0) { return E0; }
728 void printAlloc(const Alloc *E, StreamType &SS) {
H A DThreadSafetyTIL.h993 class Alloc : public SExpr { class in namespace:clang::threadSafety
1002 Alloc(SExpr *D, AllocKind K) : SExpr(COP_Alloc), Dtype(D) { Flags = K; } function in class:clang::threadSafety::Alloc
1003 Alloc(const Alloc &A, SExpr *Dt) : SExpr(A), Dtype(Dt) { Flags = A.kind(); } function in class:clang::threadSafety::Alloc
1017 typename C::CType compare(const Alloc* E, C& Cmp) const {
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h472 llvm::BumpPtrAllocator &Alloc; member in class:clang::ento::ProgramStateManager
506 llvm::BumpPtrAllocator& getAllocator() { return Alloc; }
/external/lzma/C/
H A DLzFind.c42 p->bufferBase = (Byte *)alloc->Alloc(alloc, (size_t)blockSize);
170 return (CLzRef *)alloc->Alloc(alloc, sizeInBytes);
H A DLzmaDec.c963 p->probs = (CLzmaProb *)alloc->Alloc(alloc, numProbs * sizeof(CLzmaProb));
990 p->dic = (Byte *)alloc->Alloc(alloc, dicBufSize);
H A DLzma2Enc.c385 CLzma2Enc *p = (CLzma2Enc *)alloc->Alloc(alloc, sizeof(CLzma2Enc));
H A DLzmaEnc.c479 p->bufBase = (Byte *)alloc->Alloc(alloc, RC_BUF_SIZE);
1716 p = alloc->Alloc(alloc, sizeof(CLzmaEnc));
1924 p->litProbs = (CLzmaProb *)alloc->Alloc(alloc, (0x300 << lclp) * sizeof(CLzmaProb));
1925 p->saveState.litProbs = (CLzmaProb *)alloc->Alloc(alloc, (0x300 << lclp) * sizeof(CLzmaProb));
/external/skia/src/gpu/text/
H A DGrStencilAndCoverTextContext.cpp444 fInstanceData.reset(InstanceData::Alloc(GrPathRendering::kTranslate_PathTransformType,
506 fInstanceData.reset(InstanceData::Alloc(GrPathRendering::kTranslate_PathTransformType,
/external/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp961 /// The Alloc pointer is stored into GV somewhere. Transform all uses of the
965 static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc, argument
967 while (!Alloc->use_empty()) {
968 Instruction *U = cast<Instruction>(*Alloc->user_begin());
979 InsertPt = PN->getIncomingBlock(*Alloc->use_begin())->getTerminator();
1001 U->replaceUsesOfWith(Alloc, NL);
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DGlobalOpt.cpp1020 /// ReplaceUsesOfMallocWithGlobal - The Alloc pointer is stored into GV
1025 static void ReplaceUsesOfMallocWithGlobal(Instruction *Alloc, argument
1027 while (!Alloc->use_empty()) {
1028 Instruction *U = cast<Instruction>(*Alloc->use_begin());
1039 InsertPt = PN->getIncomingBlock(Alloc->use_begin())->getTerminator();
1061 U->replaceUsesOfWith(Alloc, NL);
/external/clang/lib/Basic/
H A DSourceManager.cpp1198 llvm::BumpPtrAllocator &Alloc,
1201 llvm::BumpPtrAllocator &Alloc,
1281 FI->SourceLineCache = Alloc.Allocate<unsigned>(LineOffsets.size());
1200 ComputeLineNumbers(DiagnosticsEngine &Diag, ContentCache *FI, llvm::BumpPtrAllocator &Alloc, const SourceManager &SM, bool &Invalid) argument
/external/llvm/include/llvm/CodeGen/
H A DSelectionDAG.h116 BumpPtrAllocator Alloc; member in class:llvm::SDDbgInfo
143 Alloc.Reset();
146 BumpPtrAllocator &getAlloc() { return Alloc; }
/external/llvm/lib/Support/
H A DYAMLParser.cpp169 return new (Alloc.Allocate<Token>()) Token(V);
179 BumpPtrAllocator Alloc; member in struct:llvm::ilist_node_traits
823 TokenQueue.Alloc.Reset();
/external/clang/lib/Lex/
H A DPTHLexer.cpp570 Alloc.Allocate<std::pair<IdentifierInfo,const unsigned char*> >();
H A DHeaderSearch.cpp553 static const char *copyString(StringRef Str, llvm::BumpPtrAllocator &Alloc) { argument
555 char *CopyStr = Alloc.Allocate<char>(Str.size()+1);
/external/compiler-rt/lib/msan/
H A Dmsan.cc129 FlagHandlerKeepGoing *fh_keep_going = new (FlagParser::Alloc) // NOLINT
/external/google-breakpad/src/client/linux/handler/
H A Dexception_handler.cc475 uint8_t* stack = reinterpret_cast<uint8_t*>(allocator.Alloc(kChildStackSize));
/external/llvm/lib/CodeGen/
H A DRegisterCoalescer.cpp1057 VNInfo::Allocator& Alloc = LIS->getVNInfoAllocator(); local
1060 SR.createDeadDef(DefIndex, Alloc);
1064 LiveInterval::SubRange *SR = DstInt.createSubRange(Alloc, MaxMask);
1065 SR->createDeadDef(DefIndex, Alloc);
/external/lzma/CPP/7zip/UI/Common/
H A DOpenArchive.cpp1452 byteBuffer.Alloc(kBufSize);
1472 byteBuffer.Alloc(kBufSize);
1758 byteBuffer.Alloc(bufSize);
2070 byteBuffer.Alloc(kBufSize);
/external/skia/src/core/
H A DSkAAClip.cpp75 static RunHead* Alloc(int rowCount, size_t dataSize) { function in struct:SkAAClip::RunHead
99 RunHead* head = RunHead::Alloc(1, rowSize);
854 RunHead* head = RunHead::Alloc(yArray.count(), xArray.bytes());
1097 RunHead* head = RunHead::Alloc(fRows.count(), dataSize);
H A DSkRegion_path.cpp371 tmp.fRunHead = RunHead::Alloc(count);
/external/clang/lib/StaticAnalyzer/Core/
H A DPathDiagnostic.cpp468 Entry = Alloc.Allocate<PDFileEntry>();
474 char *FileName_cstr = (char*) Alloc.Allocate(FileName.size(), 1);

Completed in 939 milliseconds

12345678