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

12

/netbsd-current/sys/external/bsd/acpica/dist/resources/
H A Drscalc.c218 ACPI_RS_LENGTH TotalSize; local
245 TotalSize = AcpiGbl_AmlResourceSizes [Resource->Type];
259 TotalSize--;
270 TotalSize--;
286 TotalSize = sizeof (AML_RESOURCE_LARGE_HEADER);
291 TotalSize = (ACPI_RS_LENGTH)
292 (TotalSize + Resource->Data.Vendor.ByteLength);
301 *SizeNeeded = AmlSizeNeeded + TotalSize;
313 TotalSize = (ACPI_RS_LENGTH) (TotalSize
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.cpp87 size_t TotalSize = 0; local
96 TotalSize = alignTo(TotalSize, sys::Process::getPageSizeEstimate());
97 TotalSize += Seg.getContentSize();
98 TotalSize += Seg.getZeroFillSize();
104 sys::Memory::allocateMappedMemory(TotalSize, nullptr, ReadWrite, EC);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Support/
H A DCachePruning.cpp205 uint64_t TotalSize = 0; local
242 TotalSize += StatusOrErr->getSize();
253 TotalSize -= FileInfo->Size;
256 << FileInfo->Size << "), new occupancy is " << TotalSize
273 auto AvailableSpace = TotalSize + SpaceInfo.free;
283 LLVM_DEBUG(dbgs() << "Occupancy: " << ((100 * TotalSize) / AvailableSpace)
289 while (TotalSize > TotalSizeTarget && FileInfo != FileInfos.end())
/netbsd-current/external/apache2/llvm/dist/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,
384 TotalSize = Pow2Size;
392 unsigned TotalSize) {
395 // - only handle a TotalSize of up to 4.
397 if (TotalSize > 4)
421 TotalSize, OldM.getAlign(), OldM.getAAInfo());
425 unsigned WOpc = (TotalSize == 2) ? Hexagon::S4_storeirh_io :
426 (TotalSize
305 selectStores(InstrGroup::iterator Begin, InstrGroup::iterator End, InstrGroup &OG, unsigned &TotalSize, unsigned MaxSize) argument
391 createWideStores(InstrGroup &OG, InstrGroup &NG, unsigned TotalSize) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/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;
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/
H A DWriter.cpp58 size_t TotalSize = finalize(); local
59 Out.reserveExtraSpace(TotalSize);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
H A DMSP430BranchSelector.cpp95 unsigned TotalSize = BlockOffsets[Begin->getNumber()]; local
97 BlockOffsets[MBB.getNumber()] = TotalSize;
99 TotalSize += TII->getInstSizeInBytes(MI);
102 return TotalSize;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp122 uint32_t TotalSize; // total size of header member in struct:__anon1962::LLVMPerfJitHeader
133 uint32_t TotalSize; member in struct:__anon1962::LLVMPerfJitRecordPrefix
220 Header.TotalSize = sizeof(Header);
412 rec.Prefix.TotalSize = sizeof(rec) + // debug record itself
443 rec.Prefix.TotalSize = sizeof(rec); // will be increased further
453 rec.Prefix.TotalSize += sizeof(LLVMPerfJitDebugEntry);
454 rec.Prefix.TotalSize += line.FileName.size() + 1;
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
H A DInstrProfData.inc356 uint32_t TotalSize;
410 uint32_t getSize() const { return TotalSize; }
552 uint32_t TotalSize = sizeof(ValueProfData);
559 TotalSize += getValueProfRecordSize(NumValueSites,
562 return TotalSize;
591 * DstData is not null, the caller is expected to set the TotalSize
598 uint32_t TotalSize =
599 DstData ? DstData->TotalSize : getValueProfDataSize(Closure);
602 DstData ? DstData : Closure->AllocValueProfData(TotalSize);
604 VPD->TotalSize
[all...]
H A DInstrProf.h1088 inline std::unique_ptr<Summary> allocSummary(uint32_t TotalSize) { argument
1089 return std::unique_ptr<Summary>(new (::operator new(TotalSize))
1090 Summary(TotalSize));
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/
H A DOrcRemoteTargetClient.h396 auto TotalSize = calcTotalAllocSize(Request, TargetPageSize);
397 if (!TotalSize)
398 return TotalSize.takeError();
406 sys::Memory::allocateMappedMemory(*TotalSize, nullptr, ReadWrite, EC);
500 size_t TotalSize = 0; local
509 TotalSize = alignTo(TotalSize, TargetPageSize);
510 TotalSize += Seg.getContentSize();
511 TotalSize += Seg.getZeroFillSize();
514 return TotalSize;
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DAMDGPUPrintfRuntimeBinding.cpp475 uint32_t TotalSize = EleCount * EleSize; local
482 TotalSize += EleSize;
486 EleCount = TotalSize / 64;
491 EleCount = TotalSize / 64;
503 EleCount = TotalSize / 64;
H A DAMDGPUSubtarget.cpp605 uint64_t TotalSize = ExplicitOffset + ExplicitArgBytes;
609 TotalSize = alignTo(ExplicitArgBytes, Alignment) + ImplicitBytes;
613 return alignTo(TotalSize, 4);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ProfileData/
H A DInstrProf.cpp873 static std::unique_ptr<ValueProfData> allocValueProfData(uint32_t TotalSize) { argument
874 return std::unique_ptr<ValueProfData>(new (::operator new(TotalSize))
882 if (TotalSize % sizeof(uint64_t))
890 if ((char *)VR - (char *)this > (ptrdiff_t)TotalSize)
906 uint32_t TotalSize = swapToHostOrder<uint32_t>(Header, Endianness); local
907 if (D + TotalSize > BufferEnd)
910 std::unique_ptr<ValueProfData> VPD = allocValueProfData(TotalSize);
911 memcpy(VPD.get(), D, TotalSize);
928 sys::swapByteOrder<uint32_t>(TotalSize);
950 sys::swapByteOrder<uint32_t>(TotalSize);
[all...]
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/profile/
H A DInstrProfilingWriter.c128 CurVData->TotalSize) != 0)
H A DInstrProfData.inc253 uint32_t TotalSize;
308 uint32_t getSize() const { return TotalSize; }
477 uint32_t TotalSize = sizeof(ValueProfData);
481 return TotalSize;
487 TotalSize += getValueProfRecordSize(NumValueSites,
490 return TotalSize;
523 uint32_t TotalSize = getValueProfDataSize(Closure);
526 DstData ? DstData : Closure->AllocValueProfData(TotalSize);
528 VPD->TotalSize = TotalSize;
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DTFUtils.cpp432 int64_t TotalSize = TF_DataTypeSize(Type); local
434 TotalSize *= D;
437 TF_AllocateTensor(Type, Dimensions.data(), Dimensions.size(), TotalSize);
438 std::memset(TF_TensorData(Input[Index]), 0, TotalSize); local
/netbsd-current/sys/external/bsd/acpica/dist/utilities/
H A Duttrack.c179 AcpiGbl_GlobalList->TotalSize += (UINT32) Size;
248 AcpiGbl_GlobalList->TotalSize += (UINT32) Size;
/netbsd-current/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/
H A Dpsapi.d79 SIZE_T TotalSize;
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ExecutionEngine/Orc/TargetProcess/
H A DOrcRPCTPCServer.h476 uint64_t TotalSize = 0; local
487 TotalSize += Size;
492 auto MB = sys::Memory::allocateMappedMemory(TotalSize, nullptr, PF, EC);
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
H A DMachOWriter.cpp515 size_t TotalSize = totalSize(); local
516 Buf = WritableMemoryBuffer::getNewMemBuffer(TotalSize);
520 Twine::utohexstr(TotalSize) + " bytes");
/netbsd-current/external/apache2/llvm/dist/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp226 YAMLFD.TotalSize = ObjFD->TotalSize;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DStackColoring.cpp1233 unsigned TotalSize = 0; local
1241 TotalSize += MFI->getObjectSize(i);
1244 LLVM_DEBUG(dbgs() << "Total Stack size: " << TotalSize << " bytes\n\n");
1248 if (NumMarkers < 2 || TotalSize < 16 || DisableColoring ||
/netbsd-current/sys/external/bsd/acpica/dist/debugger/
H A Ddbstats.c173 List->TotalSize);
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
H A DFuzzerLoop.cpp742 size_t TotalSize = 0; local
753 TotalSize += File.Size;
770 SizedFiles.size(), MinSize, MaxSize, TotalSize, GetPeakRSSMb());

Completed in 560 milliseconds

12