Searched refs:TotalSize (Results 1 - 15 of 15) sorted by relevance

/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp188 uint64_t TotalSize,
192 uint8_t *Addr = MemMgr->allocateDataSection(TotalSize, sizeof(void*),
197 Sections.push_back(SectionEntry(Addr, TotalSize, TotalSize, 0));
198 memset(Addr, 0, TotalSize);
202 << " DataSize: " << TotalSize
186 emitCommonSymbols(ObjectImage &Obj, const CommonSymbolMap &CommonSymbols, uint64_t TotalSize, SymbolTableMap &SymbolTable) argument
H A DRuntimeDyldImpl.h193 uint64_t TotalSize,
/external/llvm/lib/CodeGen/
H A DStackColoring.cpp587 unsigned TotalSize = 0; local
593 TotalSize += MFI->getObjectSize(i);
596 DEBUG(dbgs()<<"Total Stack size: "<<TotalSize<<" bytes\n\n");
600 if (NumMarkers < 2 || TotalSize < 16 || DisableColoring) {
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfException.cpp501 unsigned TotalSize =
506 unsigned SizeAlign = (4 - TotalSize) & 3;
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1044 uint64_t TotalSize = 0; local
1066 TotalSize += AlignedSize;
1072 uint64_t LocalStackSize = TotalSize + (AllocaVec.size() + 1) * RedzoneSize;
/external/kernel-headers/original/asm-x86/
H A Dvoyager.h354 __u32 TotalSize; member in struct:CacheDescription
/external/llvm/include/llvm/Support/
H A DCOFF.h330 uint32_t TotalSize; member in struct:llvm::COFF::AuxiliaryFunctionDefinition
/external/llvm/utils/TableGen/
H A DDAGISelMatcherEmitter.cpp800 unsigned TotalSize = MatcherEmitter.EmitMatcherList(TheMatcher, 5, 0, OS); local
801 OS << " 0\n }; // Total Array size is " << (TotalSize+1) << " bytes\n\n";
/external/webkit/Source/JavaScriptCore/bytecode/
H A DCodeBlock.cpp1273 #define DEFINE_VARS(name) size_t name##IsNotEmpty = 0; size_t name##TotalSize = 0;
1294 #define GET_STATS(name) if (!codeBlock->m_##name.isEmpty()) { name##IsNotEmpty++; name##TotalSize += sizeInBytes(codeBlock->m_##name); }
1305 #define GET_STATS(name) if (!codeBlock->m_rareData->m_##name.isEmpty()) { name##IsNotEmpty++; name##TotalSize += sizeInBytes(codeBlock->m_rareData->m_##name); }
1328 #define GET_TOTAL_SIZE(name) totalSize += name##TotalSize;
1347 #define PRINT_STATS(name) printf("Number of CodeBlocks with " #name ": %zu\n", name##IsNotEmpty); printf("Size of all " #name ": %zu\n", name##TotalSize);
/external/clang/lib/AST/
H A DType.cpp85 llvm::APSInt TotalSize(llvm::APInt(SizeExtended.getBitWidth(), ElementSize));
86 TotalSize *= SizeExtended;
88 return TotalSize.getActiveBits();
H A DExprCXX.cpp121 unsigned TotalSize = Array + hasInitializer + NumPlacementArgs; local
122 SubExprs = new (C) Stmt*[TotalSize];
/external/clang/lib/CodeGen/
H A DCGExprConstant.cpp669 unsigned TotalSize = CGM.getTargetData().getTypeAllocSize(destType); local
671 assert(CurSize <= TotalSize && "Union size mismatch!");
672 if (unsigned NumPadBytes = TotalSize - CurSize) {
/external/clang/lib/Basic/
H A DSourceManager.cpp507 unsigned TotalSize) {
511 CurrentLoadedOffset -= TotalSize;
506 AllocateLoadedSLocEntries(unsigned NumSLocEntries, unsigned TotalSize) argument
/external/clang/include/clang/Basic/
H A DSourceManager.h1396 /// NumSLocEntries will be allocated, which occupy a total of TotalSize space
1400 AllocateLoadedSLocEntries(unsigned NumSLocEntries, unsigned TotalSize);
/external/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp559 WriteLE32(i->Aux.FunctionDefinition.TotalSize);

Completed in 484 milliseconds