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

12

/freebsd-11-stable/sys/contrib/dev/acpica/components/resources/
H A Drscalc.c326 ACPI_RS_LENGTH TotalSize; local
353 TotalSize = AcpiGbl_AmlResourceSizes [Resource->Type];
367 TotalSize--;
378 TotalSize--;
394 TotalSize = sizeof (AML_RESOURCE_LARGE_HEADER);
399 TotalSize = (ACPI_RS_LENGTH)
400 (TotalSize + Resource->Data.Vendor.ByteLength);
409 *SizeNeeded = AmlSizeNeeded + TotalSize;
421 TotalSize = (ACPI_RS_LENGTH) (TotalSize
[all...]
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/
H A Dscudo_errors.cpp60 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize, argument
63 "exceeds maximum supported size of 0x%zx\n", UserSize, TotalSize,
H A Dscudo_errors.h27 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DJITLinkMemoryManager.cpp86 size_t TotalSize = 0; local
95 TotalSize = alignTo(TotalSize, sys::Process::getPageSizeEstimate());
96 TotalSize += Seg.getContentSize();
97 TotalSize += Seg.getZeroFillSize();
103 sys::Memory::allocateMappedMemory(TotalSize, nullptr, ReadWrite, EC);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DCachePruning.cpp205 uint64_t TotalSize = 0; local
241 TotalSize += StatusOrErr->getSize();
252 TotalSize -= FileInfo->Size;
255 << FileInfo->Size << "), new occupancy is " << TotalSize
272 auto AvailableSpace = TotalSize + SpaceInfo.free;
282 LLVM_DEBUG(dbgs() << "Occupancy: " << ((100 * TotalSize) / AvailableSpace)
288 while (TotalSize > TotalSizeTarget && FileInfo != FileInfos.end())
/freebsd-11-stable/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,
384 TotalSize = Pow2Size;
392 unsigned TotalSize) {
395 // - only handle a TotalSize of up to 4.
397 if (TotalSize > 4)
421 TotalSize, OldM.getAlignment(),
426 unsigned WOpc = (TotalSize == 2) ? Hexagon::S4_storeirh_io :
427 (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...]
/freebsd-11-stable/contrib/llvm-project/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;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dreport.h33 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize,
H A Dreport.cpp95 void NORETURN reportAllocationSizeTooBig(uptr UserSize, uptr TotalSize, argument
100 UserSize, TotalSize, MaxSize);
/freebsd-11-stable/contrib/llvm-project/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;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
H A DInstrProfData.inc341 uint32_t TotalSize;
395 uint32_t getSize() const { return TotalSize; }
537 uint32_t TotalSize = sizeof(ValueProfData);
544 TotalSize += getValueProfRecordSize(NumValueSites,
547 return TotalSize;
576 * DstData is not null, the caller is expected to set the TotalSize
583 uint32_t TotalSize =
584 DstData ? DstData->TotalSize : getValueProfDataSize(Closure);
587 DstData ? DstData : Closure->AllocValueProfData(TotalSize);
589 VPD->TotalSize
[all...]
H A DInstrProf.h1077 inline std::unique_ptr<Summary> allocSummary(uint32_t TotalSize) { argument
1078 return std::unique_ptr<Summary>(new (::operator new(TotalSize))
1079 Summary(TotalSize));
/freebsd-11-stable/contrib/llvm-project/compiler-rt/include/profile/
H A DInstrProfData.inc341 uint32_t TotalSize;
395 uint32_t getSize() const { return TotalSize; }
537 uint32_t TotalSize = sizeof(ValueProfData);
544 TotalSize += getValueProfRecordSize(NumValueSites,
547 return TotalSize;
576 * DstData is not null, the caller is expected to set the TotalSize
583 uint32_t TotalSize =
584 DstData ? DstData->TotalSize : getValueProfDataSize(Closure);
587 DstData ? DstData : Closure->AllocValueProfData(TotalSize);
589 VPD->TotalSize
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp123 uint32_t TotalSize; // total size of header member in struct:__anon1889::LLVMPerfJitHeader
134 uint32_t TotalSize; member in struct:__anon1889::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;
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingMerge.c130 SrcValueProfData->TotalSize);
H A DInstrProfilingWriter.c150 VPHeader.TotalSize = VPDataReader->GetValueProfDataSize();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUPrintfRuntimeBinding.cpp485 uint32_t TotalSize = EleCount * EleSize; local
496 TotalSize += EleSize;
500 EleCount = TotalSize / 64;
505 EleCount = TotalSize / 64;
517 EleCount = TotalSize / 64;
H A DAMDGPUSubtarget.cpp520 uint64_t TotalSize = ExplicitOffset + ExplicitArgBytes; local
524 TotalSize = alignTo(ExplicitArgBytes, Alignment) + ImplicitBytes;
528 return alignTo(TotalSize, 4);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProf.cpp850 static std::unique_ptr<ValueProfData> allocValueProfData(uint32_t TotalSize) { argument
851 return std::unique_ptr<ValueProfData>(new (::operator new(TotalSize))
859 if (TotalSize % sizeof(uint64_t))
867 if ((char *)VR - (char *)this > (ptrdiff_t)TotalSize)
883 uint32_t TotalSize = swapToHostOrder<uint32_t>(Header, Endianness); local
884 if (D + TotalSize > BufferEnd)
887 std::unique_ptr<ValueProfData> VPD = allocValueProfData(TotalSize);
888 memcpy(VPD.get(), D, TotalSize);
905 sys::swapByteOrder<uint32_t>(TotalSize);
927 sys::swapByteOrder<uint32_t>(TotalSize);
[all...]
/freebsd-11-stable/sys/contrib/dev/acpica/components/utilities/
H A Duttrack.c287 AcpiGbl_GlobalList->TotalSize += (UINT32) Size;
356 AcpiGbl_GlobalList->TotalSize += (UINT32) Size;
/freebsd-11-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbstats.c281 List->TotalSize);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackColoring.cpp1184 unsigned TotalSize = 0; local
1192 TotalSize += MFI->getObjectSize(i);
1195 LLVM_DEBUG(dbgs() << "Total Stack size: " << TotalSize << " bytes\n\n");
1199 if (NumMarkers < 2 || TotalSize < 16 || DisableColoring ||
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerLoop.cpp731 size_t TotalSize = 0; local
735 TotalSize += File.Size;
752 CorporaFiles.size(), MinSize, MaxSize, TotalSize, GetPeakRSSMb());
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DObject.cpp2273 TotalSize = 0;
2277 TotalSize = std::max(TotalSize, Sec.Offset + Sec.Size);
2280 if (Error E = Buf.allocate(TotalSize))
2330 assert(Offset == TotalSize);
2381 TotalSize = LengthCalc.getBufferOffset() +
2384 if (Error E = Buf.allocate(TotalSize))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp449 uint64_t TotalSize = 0; local
453 TotalSize += AlignedSize;
455 return TotalSize;

Completed in 372 milliseconds

12