/third_party/lzma/CPP/7zip/Compress/ |
H A D | CopyCoder.cpp | 35 TotalSize = 0;
in Code() 42 const UInt64 rem = *outSize - TotalSize;
in Code() 50 // if (TotalSize != 0)
in Code() 88 TotalSize += processed;
in Code() 96 TotalSize += size;
in Code() 103 if (progress && (TotalSize & (((UInt32)1 << 22) - 1)) == 0)
in Code() 105 RINOK(progress->SetRatioInfo(&TotalSize, &TotalSize))
in Code() 113 TotalSize = 0;
in SetInStream() 127 TotalSize in Read() [all...] |
H A D | CopyCoder.h | 23 UInt64 TotalSize;
member 25 CCopyCoder(): _buf(NULL), TotalSize(0) {}
in CCopyCoder()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/ |
H A D | JITLinkMemoryManager.cpp | 86 size_t TotalSize = 0; in allocate() local 95 TotalSize = alignTo(TotalSize, sys::Process::getPageSizeEstimate()); in allocate() 96 TotalSize += Seg.getContentSize(); in allocate() 97 TotalSize += Seg.getZeroFillSize(); in allocate() 103 sys::Memory::allocateMappedMemory(TotalSize, nullptr, ReadWrite, EC); in allocate()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
H A D | HexagonStoreWidening.cpp | 105 InstrGroup &OG, unsigned &TotalSize, unsigned MaxSize); 106 bool createWideStores(InstrGroup &OG, InstrGroup &NG, unsigned TotalSize); 306 InstrGroup::iterator End, InstrGroup &OG, unsigned &TotalSize, in selectStores() 384 TotalSize = Pow2Size; in selectStores() 392 unsigned TotalSize) { in createWideStores() 395 // - only handle a TotalSize of up to 4. in createWideStores() 397 if (TotalSize > 4) in createWideStores() 421 TotalSize, OldM.getAlignment(), in createWideStores() 426 unsigned WOpc = (TotalSize == 2) ? Hexagon::S4_storeirh_io : in createWideStores() 427 (TotalSize in createWideStores() 305 selectStores(InstrGroup::iterator Begin, InstrGroup::iterator End, InstrGroup &OG, unsigned &TotalSize, unsigned MaxSize) selectStores() argument 391 createWideStores(InstrGroup &OG, InstrGroup &NG, unsigned TotalSize) createWideStores() argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | CachePruning.cpp | 205 uint64_t TotalSize = 0; in pruneCache() local 241 TotalSize += StatusOrErr->getSize(); in pruneCache() 252 TotalSize -= FileInfo->Size; in pruneCache() 255 << FileInfo->Size << "), new occupancy is " << TotalSize in pruneCache() 272 auto AvailableSpace = TotalSize + SpaceInfo.free; in pruneCache() 282 LLVM_DEBUG(dbgs() << "Occupancy: " << ((100 * TotalSize) / AvailableSpace) in pruneCache() 288 while (TotalSize > TotalSizeTarget && FileInfo != FileInfos.end()) in pruneCache()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMUnwindOpAsm.cpp | 162 size_t TotalSize = Ops.size() + 1; 163 size_t RoundUpSize = (TotalSize + 3) / 4 * 4; 178 size_t TotalSize = Ops.size() + 2; 179 size_t RoundUpSize = (TotalSize + 3) / 4 * 4;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/PerfJITEvents/ |
H A D | PerfJITEventListener.cpp | 123 uint32_t TotalSize; // total size of header member 134 uint32_t TotalSize; member 220 Header.TotalSize = sizeof(Header); in PerfJITEventListener() 412 rec.Prefix.TotalSize = sizeof(rec) + // debug record itself in NotifyCode() 443 rec.Prefix.TotalSize = sizeof(rec); // will be increased further in NotifyDebug() 453 rec.Prefix.TotalSize += sizeof(LLVMPerfJitDebugEntry); in NotifyDebug() 454 rec.Prefix.TotalSize += line.FileName.size() + 1; in NotifyDebug()
|
/third_party/skia/tests/ |
H A D | SkTBlockListTest.cpp | 48 static size_t TotalSize(SkTBlockList<C, N>& list) { in TotalSize() function in TBlockListTestAccess 252 size_t initialSize = TBlockListTestAccess::TotalSize(list); in run_reserve_test() 257 REPORTER_ASSERT(reporter, initialSize == TBlockListTestAccess::TotalSize(list)); in run_reserve_test() 263 size_t reservedSize = TBlockListTestAccess::TotalSize(list); in run_reserve_test() 268 REPORTER_ASSERT(reporter, reservedSize == TBlockListTestAccess::TotalSize(list)); in run_reserve_test() 284 reservedSize = TBlockListTestAccess::TotalSize(list); in run_reserve_test() 288 REPORTER_ASSERT(reporter, reservedSize == TBlockListTestAccess::TotalSize(list)); in run_reserve_test()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/ |
H A D | MSP430BranchSelector.cpp | 95 unsigned TotalSize = BlockOffsets[Begin->getNumber()]; in measureFunction() local 97 BlockOffsets[MBB.getNumber()] = TotalSize; in measureFunction() 99 TotalSize += TII->getInstSizeInBytes(MI); in measureFunction() 102 return TotalSize; in measureFunction()
|
/third_party/lame/Dll/ |
H A D | MP3export.pas | 240 While (done < TotalSize) do 242 if (done + dwSamples*2 < TotalSize) 245 ToRead := TotalSize-done;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
H A D | InstrProf.cpp | 850 static std::unique_ptr<ValueProfData> allocValueProfData(uint32_t TotalSize) { in allocValueProfData() argument 851 return std::unique_ptr<ValueProfData>(new (::operator new(TotalSize)) in allocValueProfData() 859 if (TotalSize % sizeof(uint64_t)) in checkIntegrity() 867 if ((char *)VR - (char *)this > (ptrdiff_t)TotalSize) in checkIntegrity() 883 uint32_t TotalSize = swapToHostOrder<uint32_t>(Header, Endianness); in getValueProfData() local 884 if (D + TotalSize > BufferEnd) in getValueProfData() 887 std::unique_ptr<ValueProfData> VPD = allocValueProfData(TotalSize); in getValueProfData() 888 memcpy(VPD.get(), D, TotalSize); in getValueProfData() 905 sys::swapByteOrder<uint32_t>(TotalSize); in swapBytesToHost() 927 sys::swapByteOrder<uint32_t>(TotalSize); in swapBytesFromHost() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUPrintfRuntimeBinding.cpp | 485 uint32_t TotalSize = EleCount * EleSize; in lowerPrintfForGpu() local 496 TotalSize += EleSize; in lowerPrintfForGpu() 500 EleCount = TotalSize / 64; in lowerPrintfForGpu() 505 EleCount = TotalSize / 64; in lowerPrintfForGpu() 517 EleCount = TotalSize / 64; in lowerPrintfForGpu()
|
H A D | AMDGPUSubtarget.cpp | 520 uint64_t TotalSize = ExplicitOffset + ExplicitArgBytes; in getKernArgSegmentSize() local 524 TotalSize = alignTo(ExplicitArgBytes, Alignment) + ImplicitBytes; in getKernArgSegmentSize() 528 return alignTo(TotalSize, 4); in getKernArgSegmentSize()
|
/third_party/node/deps/v8/src/compiler/ |
H A D | loop-peeling.cc | 132 uint32_t estimated_peeled_size = 5 + loop->TotalSize() * 2; in Peel() 227 if (loop->TotalSize() > LoopPeeler::kMaxPeeledNodes) return; in PeelInnerLoops()
|
H A D | loop-analysis.h | 51 uint32_t TotalSize() const { return exits_end_ - header_start_; } in TotalSize() function in v8::internal::compiler::LoopTree::Loop
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-arguments.h | 52 static int TotalSize(const FunctionSig* sig) { in TotalSize() function in v8::internal::wasm::CWasmArgumentsPacker
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | StackColoring.cpp | 1184 unsigned TotalSize = 0; in runOnMachineFunction() local 1192 TotalSize += MFI->getObjectSize(i); in runOnMachineFunction() 1195 LLVM_DEBUG(dbgs() << "Total Stack size: " << TotalSize << " bytes\n\n"); in runOnMachineFunction() 1199 if (NumMarkers < 2 || TotalSize < 16 || DisableColoring || in runOnMachineFunction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/ |
H A D | InstrProf.h | 1077 inline std::unique_ptr<Summary> allocSummary(uint32_t TotalSize) { in allocSummary() argument 1078 return std::unique_ptr<Summary>(new (::operator new(TotalSize)) in allocSummary() 1079 Summary(TotalSize)); in allocSummary()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
H A D | RuntimeDyldELF.cpp | 1861 size_t TotalSize = CurrentGOTIndex * getGOTEntrySize(); in finalizeLoad() local 1862 uint8_t *Addr = MemMgr.allocateDataSection(TotalSize, getGOTEntrySize(), in finalizeLoad() 1868 SectionEntry(".got", Addr, TotalSize, TotalSize, 0); in finalizeLoad() 1872 memset(Addr, 0, TotalSize); in finalizeLoad()
|
H A D | RuntimeDyld.cpp | 449 uint64_t TotalSize = 0; in computeAllocationSizeForSections() local 453 TotalSize += AlignedSize; in computeAllocationSizeForSections() 455 return TotalSize; in computeAllocationSizeForSections()
|
/third_party/lzma/CPP/7zip/Archive/ |
H A D | SplitHandler.cpp | 317 currentTotalSize += copyCoderSpec->TotalSize;
in Extract()
|
/third_party/node/deps/v8/src/handles/ |
H A D | global-handles.h | 182 size_t TotalSize() const;
|
H A D | global-handles.cc | 227 size_t TotalSize() const { return blocks_ * sizeof(NodeType) * kBlockSize; } in TotalSize() function in v8::internal::final 919 size_t GlobalHandles::TotalSize() const { in TotalSize() function in v8::internal::GlobalHandles 920 return regular_nodes_->TotalSize() + traced_nodes_->TotalSize(); in TotalSize()
|
/third_party/backends/backend/ |
H A D | mustek_usb2.c | 996 int TotalSize = Rows * g_ssSuggest.dwBytesPerRow; in ReadScannedData() local 997 for (i = 0; i < TotalSize; i++) in ReadScannedData() 1059 int TotalSize = Rows * g_ssSuggest.dwBytesPerRow; in ReadScannedData() local 1067 for (i = 0; i < TotalSize; i++) in ReadScannedData()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
H A D | COFF.h | 365 uint32_t TotalSize; member
|