Home
last modified time | relevance | path

Searched refs:TotalSize (Results 1 – 25 of 59) sorted by relevance

123

/freebsd-14.2/sys/contrib/dev/acpica/components/resources/
H A Drscalc.c421 TotalSize = (ACPI_RS_LENGTH) (TotalSize + in AcpiRsGetAmlLength()
432 TotalSize = (ACPI_RS_LENGTH) (TotalSize + in AcpiRsGetAmlLength()
443 TotalSize = (ACPI_RS_LENGTH) (TotalSize + in AcpiRsGetAmlLength()
455 TotalSize = (ACPI_RS_LENGTH) (TotalSize + in AcpiRsGetAmlLength()
467 TotalSize = (ACPI_RS_LENGTH) (TotalSize + in AcpiRsGetAmlLength()
476 TotalSize = (ACPI_RS_LENGTH) (TotalSize + in AcpiRsGetAmlLength()
489 TotalSize = (ACPI_RS_LENGTH) (TotalSize + in AcpiRsGetAmlLength()
497 TotalSize = (ACPI_RS_LENGTH) (TotalSize + in AcpiRsGetAmlLength()
506 TotalSize = (ACPI_RS_LENGTH) (TotalSize + in AcpiRsGetAmlLength()
515 TotalSize = (ACPI_RS_LENGTH) (TotalSize + in AcpiRsGetAmlLength()
[all …]
/freebsd-14.2/contrib/llvm-project/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() argument
384 TotalSize = Pow2Size; in selectStores()
392 unsigned TotalSize) { in createWideStores() argument
397 if (TotalSize > 4) in createWideStores()
424 unsigned WOpc = (TotalSize == 2) ? Hexagon::S4_storeirh_io : in createWideStores()
425 (TotalSize == 4) ? Hexagon::S4_storeiri_io : 0; in createWideStores()
428 int Val = (TotalSize == 2) ? int16_t(Acc) : int(Acc); in createWideStores()
448 unsigned WOpc = (TotalSize == 2) ? Hexagon::S2_storerh_io : in createWideStores()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMapperJITLinkMemoryManager.cpp73 auto TotalSize = SegsSizes->total(); in allocate() local
91 auto TotalSize = Seg.ContentSize + Seg.ZeroFillSize; in allocate() local
94 Seg.WorkingMem = Mapper->prepare(NextSegAddr, TotalSize); in allocate()
96 NextSegAddr += alignTo(TotalSize, Mapper->getPageSize()); in allocate()
132 if (It.stop() - It.start() + 1 >= TotalSize) { in allocate()
140 auto TotalAllocation = alignTo(TotalSize, ReservationUnits); in allocate()
H A DEPCGenericRTDyldMemoryManager.cpp120 uint64_t TotalSize = 0; in reserveAllocationSpace() local
121 TotalSize += alignTo(CodeSize, EPC.getPageSize()); in reserveAllocationSpace()
122 TotalSize += alignTo(RODataSize, EPC.getPageSize()); in reserveAllocationSpace()
123 TotalSize += alignTo(RWDataSize, EPC.getPageSize()); in reserveAllocationSpace()
127 << formatv("{0:x}", TotalSize) << " bytes.\n"; in reserveAllocationSpace()
133 SAs.Reserve, TargetAllocAddr, SAs.Instance, TotalSize)) { in reserveAllocationSpace()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DCachePruning.cpp207 uint64_t TotalSize = 0; in pruneCache() local
244 TotalSize += StatusOrErr->getSize(); in pruneCache()
255 TotalSize -= FileInfo->Size; in pruneCache()
258 << FileInfo->Size << "), new occupancy is " << TotalSize in pruneCache()
286 auto AvailableSpace = TotalSize + SpaceInfo.free; in pruneCache()
296 LLVM_DEBUG(dbgs() << "Occupancy: " << ((100 * TotalSize) / AvailableSpace) in pruneCache()
315 while (TotalSize > TotalSizeTarget && FileInfo != FileInfos.end()) in pruneCache()
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/memprof/tests/
H A Drawprofile.cpp77 const uint64_t TotalSize = Read(Ptr); in TEST() local
83 EXPECT_EQ(TotalSize, NumBytes); in TEST()
84 EXPECT_EQ(TotalSize % 8, 0ULL); in TEST()
103 EXPECT_GE(TotalSize - StackOffset, 8ULL + 2 * (8 + 8 + 5 * 8)); in TEST()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/
H A DPerfSupportPlugin.cpp104 Record.Prefix.TotalSize = in getCodeLoadRecord()
154 Record.Prefix.TotalSize = EntriesBytes; in getDebugInfoRecord()
156 << "Total size: " << Record.Prefix.TotalSize << "\n" in getDebugInfoRecord()
165 Record.Prefix.TotalSize = 0; in getUnwindingRecord()
200 Record.Prefix.TotalSize = in getUnwindingRecord()
208 << "Total size: " << Record.Prefix.TotalSize << "\n" in getUnwindingRecord()
249 Batch.UnwindingRecord.Prefix.TotalSize = 0; in getRecords()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/
H A DJITLoaderPerf.cpp68 uint32_t TotalSize; member
120 DebugRecord.Prefix.TotalSize, perf_get_timestamp()}, in writeDebugRecord()
140 CodeRecord.Prefix.TotalSize, perf_get_timestamp()}, in writeCodeRecord()
164 UnwindRecord.Prefix.TotalSize, perf_get_timestamp()}, in writeUnwindRecord()
191 if (Batch.UnwindingRecord.Prefix.TotalSize > 0) in registerJITLoaderPerfImpl()
208 uint32_t TotalSize; // total size of header member
248 Hdr.TotalSize = sizeof(Hdr); in FillMachine()
388 Close.TotalSize = sizeof(Close); in registerJITLoaderPerfEndImpl()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp121 uint32_t TotalSize; // total size of header member
132 uint32_t TotalSize; member
219 Header.TotalSize = sizeof(Header); in PerfJITEventListener()
414 rec.Prefix.TotalSize = sizeof(rec) + // debug record itself in NotifyCode()
445 rec.Prefix.TotalSize = sizeof(rec); // will be increased further in NotifyDebug()
455 rec.Prefix.TotalSize += sizeof(LLVMPerfJitDebugEntry); in NotifyDebug()
456 rec.Prefix.TotalSize += line.FileName.size() + 1; in NotifyDebug()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMUnwindOpAsm.cpp165 size_t TotalSize = Ops.size() + 1; in Finalize() local
166 size_t RoundUpSize = (TotalSize + 3) / 4 * 4; in Finalize()
181 size_t TotalSize = Ops.size() + 2; in Finalize() local
182 size_t RoundUpSize = (TotalSize + 3) / 4 * 4; in Finalize()
/freebsd-14.2/contrib/llvm-project/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()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/Shared/
H A DPerfSharedStructs.h36 uint32_t TotalSize; member
97 static_cast<uint32_t>(Val.Id), Val.TotalSize); in size()
101 if (!SPSPerfJITRecordPrefix::AsArgList::deserialize(IB, Id, Val.TotalSize)) in deserialize()
108 OB, static_cast<uint32_t>(Val.Id), Val.TotalSize); in serialize()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjCopy/wasm/
H A DWasmWriter.cpp61 size_t TotalSize = finalize(); in write() local
62 Out.reserveExtraSpace(TotalSize); in write()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ProfileData/
H A DRawMemProfReader.cpp67 uint64_t TotalSize = 0; in checkBuffer() local
75 TotalSize += H->TotalSize; in checkBuffer()
76 Next += H->TotalSize; in checkBuffer()
79 if (Buffer.getBufferSize() != TotalSize) { in checkBuffer()
583 Next += Header->TotalSize; in peekBuildIds()
632 Next += Header->TotalSize; in readRawProfile()
H A DInstrProf.cpp1078 static std::unique_ptr<ValueProfData> allocValueProfData(uint32_t TotalSize) { in allocValueProfData() argument
1079 return std::unique_ptr<ValueProfData>(new (::operator new(TotalSize)) in allocValueProfData()
1088 if (TotalSize % sizeof(uint64_t)) in checkIntegrity()
1098 if ((char *)VR - (char *)this > (ptrdiff_t)TotalSize) in checkIntegrity()
1116 uint32_t TotalSize = swapToHostOrder<uint32_t>(Header, Endianness); in getValueProfData() local
1117 if (D + TotalSize > BufferEnd) in getValueProfData()
1120 std::unique_ptr<ValueProfData> VPD = allocValueProfData(TotalSize); in getValueProfData()
1121 memcpy(VPD.get(), D, TotalSize); in getValueProfData()
1138 sys::swapByteOrder<uint32_t>(TotalSize); in swapBytesToHost()
1160 sys::swapByteOrder<uint32_t>(TotalSize); in swapBytesFromHost()
H A DSampleProfWriter.cpp104 size_t TotalSize; in writeWithSizeLimitInternal() local
113 TotalSize = StringBuffer.size(); in writeWithSizeLimitInternal()
119 TotalSize += LineCount; in writeWithSizeLimitInternal()
121 if (TotalSize <= OutputSizeLimit) in writeWithSizeLimitInternal()
124 Strategy->Erase(TotalSize); in writeWithSizeLimitInternal()
/freebsd-14.2/contrib/llvm-project/compiler-rt/include/profile/
H A DMIBEntryDef.inc33 MIBEntryDef(TotalSize = 5, TotalSize, uint64_t)
H A DMemProfData.inc46 uint64_t TotalSize;
128 TotalSize = Size;
161 TotalSize += newMIB.TotalSize;
H A DInstrProfData.inc374 uint32_t TotalSize;
428 uint32_t getSize() const { return TotalSize; }
570 uint32_t TotalSize = sizeof(ValueProfData);
577 TotalSize += getValueProfRecordSize(NumValueSites,
580 return TotalSize;
609 * DstData is not null, the caller is expected to set the TotalSize
616 uint32_t TotalSize =
617 DstData ? DstData->TotalSize : getValueProfDataSize(Closure);
620 DstData ? DstData : Closure->AllocValueProfData(TotalSize);
622 VPD->TotalSize = TotalSize;
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DMIBEntryDef.inc33 MIBEntryDef(TotalSize = 5, TotalSize, uint64_t)
H A DMemProfData.inc46 uint64_t TotalSize;
128 TotalSize = Size;
161 TotalSize += newMIB.TotalSize;
H A DInstrProfData.inc374 uint32_t TotalSize;
428 uint32_t getSize() const { return TotalSize; }
570 uint32_t TotalSize = sizeof(ValueProfData);
577 TotalSize += getValueProfRecordSize(NumValueSites,
580 return TotalSize;
609 * DstData is not null, the caller is expected to set the TotalSize
616 uint32_t TotalSize =
617 DstData ? DstData->TotalSize : getValueProfDataSize(Closure);
620 DstData ? DstData : Closure->AllocValueProfData(TotalSize);
622 VPD->TotalSize = TotalSize;
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dreport.cpp90 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize, in reportAllocationSizeTooBig() argument
95 UserSize, TotalSize, MaxSize); in reportAllocationSizeTooBig()
H A Dreport.h35 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize,
/freebsd-14.2/contrib/llvm-project/clang/lib/Basic/
H A DSourceManager.cpp454 SourceLocation::UIntTy TotalSize) { in AllocateLoadedSLocEntries() argument
457 if (CurrentLoadedOffset < TotalSize || in AllocateLoadedSLocEntries()
458 CurrentLoadedOffset - TotalSize < NextLocalOffset) { in AllocateLoadedSLocEntries()
464 CurrentLoadedOffset -= TotalSize; in AllocateLoadedSLocEntries()
2216 uint64_t TotalSize = 0; in noteSLocAddressSpaceUsage() member
2241 EntryInfo.TotalSize += Size; in noteSLocAddressSpaceUsage()
2258 return A.second.TotalSize > B.second.TotalSize || in noteSLocAddressSpaceUsage()
2259 (A.second.TotalSize == B.second.TotalSize && in noteSLocAddressSpaceUsage()
2283 << (FileInfo.TotalSize - FileInfo.DirectSize); in noteSLocAddressSpaceUsage()
2284 ReportedSize += FileInfo.TotalSize; in noteSLocAddressSpaceUsage()

123