Home
last modified time | relevance | path

Searched refs:bAlloc (Results 1 – 8 of 8) sorted by relevance

/external/llvm-project/lld/Common/
DMemory.cpp14 BumpPtrAllocator lld::bAlloc; member in lld
15 StringSaver lld::saver{bAlloc};
21 bAlloc.Reset(); in freeArena()
/external/llvm-project/lld/COFF/
DPDB.cpp86 : symtab(symtab), builder(bAlloc), tMerger(bAlloc) { in PDBLinker()
533 bAlloc.Allocate(totalRealignedSize, alignOf(CodeViewContainer::Pdb)); in mergeSymbolRecords()
821 uint8_t *buffer = bAlloc.Allocate<uint8_t>(debugChunk.getSize()); in relocateDebugChunk()
1210 ons, bAlloc, CodeViewContainer::Pdb)); in addCommonLinkerModuleSymbols()
1212 cs, bAlloc, CodeViewContainer::Pdb)); in addCommonLinkerModuleSymbols()
1214 ebs, bAlloc, CodeViewContainer::Pdb)); in addCommonLinkerModuleSymbols()
1240 cgs, bAlloc, CodeViewContainer::Pdb)); in addLinkerModuleCoffGroup()
1253 sym, bAlloc, CodeViewContainer::Pdb)); in addLinkerModuleSectionSymbol()
1329 ons, bAlloc, CodeViewContainer::Pdb)); in addImportFilesToPDB()
1331 cs, bAlloc, CodeViewContainer::Pdb)); in addImportFilesToPDB()
[all …]
DWriter.cpp495 bAlloc.Allocate<coff_relocation>(originalRelocs.size()), in createThunks()
/external/skia/tests/
DGrBlockAllocatorTest.cpp514 char* bAlloc = (char*) alloc_byte(poolB); in DEF_TEST() local
515 *bAlloc = 't'; in DEF_TEST()
517 const GrBlockAllocator::Block* allocOwner = poolB->findOwningBlock(bAlloc); in DEF_TEST()
533 REPORTER_ASSERT(r, *bAlloc == 't'); in DEF_TEST()
534 REPORTER_ASSERT(r, (uintptr_t) poolA->findOwningBlock(bAlloc) == (uintptr_t) allocOwner); in DEF_TEST()
535 REPORTER_ASSERT(r, !poolB->findOwningBlock(bAlloc)); in DEF_TEST()
/external/llvm-project/lld/include/lld/Common/
DMemory.h31 extern llvm::BumpPtrAllocator bAlloc;
/external/llvm-project/lld/MachO/
DInputFiles.cpp137 return MemoryBufferRef(StringRef(buf + offset, size), path.copy(bAlloc)); in readFile()
DSyntheticSections.cpp449 uint8_t *arr = bAlloc.Allocate<uint8_t>(WordSize); in ImageLoaderCacheSection()
/external/llvm-project/lld/ELF/
DInputSection.cpp152 uncompressedBuf = bAlloc.Allocate<char>(size); in uncompress()