Searched defs:TotalSize (Results 1 - 19 of 19) sorted by relevance

/external/lzma/CPP/7zip/Compress/
H A DCopyCoder.h19 UInt64 TotalSize; member in class:NCompress::CCopyCoder
20 CCopyCoder(): TotalSize(0), _buffer(0) {};
/external/llvm/tools/lli/
H A DRemoteTargetExternal.cpp236 uint32_t TotalSize = 0; local
238 TotalSize += Sizes[I];
246 if (DataSize != TotalSize) {
249 ErrorMsg += TotalSize;
286 uint32_t TotalSize = 0; local
288 TotalSize += Sizes[I];
291 if (!WriteBytes(&TotalSize, 4)) {
295 if (TotalSize == 0)
/external/llvm/lib/Transforms/Scalar/
H A DLoadCombine.cpp173 unsigned TotalSize = 0; local
175 TotalSize += L.Load->getType()->getPrimitiveSizeInBits();
176 while (TotalSize != 0 && !isPowerOf2_32(TotalSize))
177 TotalSize -= Loads.pop_back_val().Load->getType()->getPrimitiveSizeInBits();
205 Ptr, PointerType::get(IntegerType::get(Ptr->getContext(), TotalSize),
/external/lzma/CPP/7zip/UI/Common/
H A DDirItem.h59 UInt64 TotalSize; member in class:CDirItems
/external/v8/src/compiler/
H A Dloop-analysis.h42 size_t TotalSize() const { return body_end_ - header_start_; } function in class:v8::internal::compiler::LoopTree::Loop
/external/llvm/lib/CodeGen/AsmPrinter/
H A DEHStreamer.cpp475 unsigned TotalSize = local
480 unsigned SizeAlign = (4 - TotalSize) & 3;
/external/llvm/utils/TableGen/
H A DDAGISelMatcherEmitter.cpp834 unsigned TotalSize = MatcherEmitter.EmitMatcherList(TheMatcher, 6, 0, OS); local
835 OS << " 0\n }; // Total Array size is " << (TotalSize+1) << " bytes\n\n";
/external/llvm/lib/CodeGen/
H A DStackColoring.cpp667 unsigned TotalSize = 0; local
673 TotalSize += MFI->getObjectSize(i);
676 DEBUG(dbgs()<<"Total Stack size: "<<TotalSize<<" bytes\n\n");
680 if (NumMarkers < 2 || TotalSize < 16 || DisableColoring) {
/external/llvm/lib/ProfileData/
H A DInstrProf.cpp405 static std::unique_ptr<ValueProfData> allocValueProfData(uint32_t TotalSize) { argument
406 return std::unique_ptr<ValueProfData>(new (::operator new(TotalSize))
414 if (TotalSize % sizeof(uint64_t))
422 if ((char *)VR - (char *)this > (ptrdiff_t)TotalSize)
437 uint32_t TotalSize = swapToHostOrder<uint32_t>(Header, Endianness); local
438 if (D + TotalSize > BufferEnd)
441 std::unique_ptr<ValueProfData> VPD = allocValueProfData(TotalSize);
442 memcpy(VPD.get(), D, TotalSize);
458 sys::swapByteOrder<uint32_t>(TotalSize);
479 sys::swapByteOrder<uint32_t>(TotalSize);
[all...]
/external/llvm/lib/Target/Hexagon/
H A DHexagonStoreWidening.cpp95 InstrGroup &OG, unsigned &TotalSize, unsigned MaxSize);
96 bool createWideStores(InstrGroup &OG, InstrGroup &NG, unsigned TotalSize);
309 InstrGroup::iterator End, InstrGroup &OG, unsigned &TotalSize,
389 TotalSize = Pow2Size;
398 unsigned TotalSize) {
401 // - only handle a TotalSize of up to 4.
403 if (TotalSize > 4)
428 TotalSize, OldM.getAlignment(),
433 unsigned WOpc = (TotalSize == 2) ? Hexagon::S4_storeirh_io :
434 (TotalSize
308 selectStores(InstrGroup::iterator Begin, InstrGroup::iterator End, InstrGroup &OG, unsigned &TotalSize, unsigned MaxSize) argument
397 createWideStores(InstrGroup &OG, InstrGroup &NG, unsigned TotalSize) argument
[all...]
/external/clang/lib/AST/
H A DType.cpp96 uint64_t TotalSize = NumElements.getZExtValue() * ElementSize; local
97 return 64 - llvm::countLeadingZeros(TotalSize);
106 llvm::APSInt TotalSize(llvm::APInt(SizeExtended.getBitWidth(), ElementSize));
107 TotalSize *= SizeExtended;
109 return TotalSize.getActiveBits();
H A DExprCXX.cpp206 unsigned TotalSize = Array + hasInitializer + NumPlacementArgs; local
207 SubExprs = new (C) Stmt*[TotalSize];
/external/clang/lib/CodeGen/
H A DCGExprConstant.cpp660 unsigned TotalSize = CGM.getDataLayout().getTypeAllocSize(destType); local
662 assert(CurSize <= TotalSize && "Union size mismatch!");
663 if (unsigned NumPadBytes = TotalSize - CurSize) {
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp271 uint64_t TotalSize = 0; local
275 TotalSize += AlignedSize;
277 return TotalSize;
H A DRuntimeDyldELF.cpp1803 size_t TotalSize = CurrentGOTIndex * getGOTEntrySize(); local
1804 uint8_t *Addr = MemMgr.allocateDataSection(TotalSize, getGOTEntrySize(),
1810 SectionEntry(".got", Addr, TotalSize, TotalSize, 0);
1817 memset(Addr, 0, TotalSize);
/external/clang/lib/Basic/
H A DSourceManager.cpp481 unsigned TotalSize) {
484 if (CurrentLoadedOffset - TotalSize < NextLocalOffset)
488 CurrentLoadedOffset -= TotalSize;
480 AllocateLoadedSLocEntries(unsigned NumSLocEntries, unsigned TotalSize) argument
/external/clang/lib/StaticAnalyzer/Checkers/
H A DMallocChecker.cpp2001 SVal TotalSize = svalBuilder.evalBinOp(State, BO_Mul, count, elementSize, local
2005 return MallocMemAux(C, CE, TotalSize, zeroVal, State);
/external/llvm/include/llvm/Object/
H A DCOFF.h427 support::ulittle32_t TotalSize; member in struct:llvm::object::coff_aux_function_definition
/external/llvm/include/llvm/Support/
H A DCOFF.h360 uint32_t TotalSize; member in struct:llvm::COFF::AuxiliaryFunctionDefinition

Completed in 290 milliseconds