Home
last modified time | relevance | path

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

12

/third_party/lzma/CPP/7zip/Compress/
H A DCopyCoder.cpp35 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 DCopyCoder.h23 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 DJITLinkMemoryManager.cpp86 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 DHexagonStoreWidening.cpp105 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 DCachePruning.cpp205 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 DARMUnwindOpAsm.cpp162 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 DPerfJITEventListener.cpp123 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 DSkTBlockListTest.cpp48 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 DMSP430BranchSelector.cpp95 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 DMP3export.pas240 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 DInstrProf.cpp850 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 DAMDGPUPrintfRuntimeBinding.cpp485 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 DAMDGPUSubtarget.cpp520 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 Dloop-peeling.cc132 uint32_t estimated_peeled_size = 5 + loop->TotalSize() * 2; in Peel()
227 if (loop->TotalSize() > LoopPeeler::kMaxPeeledNodes) return; in PeelInnerLoops()
H A Dloop-analysis.h51 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 Dwasm-arguments.h52 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 DStackColoring.cpp1184 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 DInstrProf.h1077 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 DRuntimeDyldELF.cpp1861 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 DRuntimeDyld.cpp449 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 DSplitHandler.cpp317 currentTotalSize += copyCoderSpec->TotalSize; in Extract()
/third_party/node/deps/v8/src/handles/
H A Dglobal-handles.h182 size_t TotalSize() const;
H A Dglobal-handles.cc227 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 Dmustek_usb2.c996 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 DCOFF.h365 uint32_t TotalSize; member

Completed in 30 milliseconds

12