| /freebsd-14.2/sys/contrib/dev/acpica/components/resources/ |
| H A D | rsutils.c | 342 ACPI_RSDESC_SIZE TotalLength, in AcpiRsSetResourceLength() argument 354 (TotalLength - AcpiUtGetResourceHeaderLength (Aml)); in AcpiRsSetResourceLength() 399 ACPI_RSDESC_SIZE TotalLength, in AcpiRsSetResourceHeader() argument 411 AcpiRsSetResourceLength (TotalLength, Aml); in AcpiRsSetResourceHeader() 481 ACPI_RSDESC_SIZE TotalLength; in AcpiRsGetResourceSource() local 488 TotalLength = ResourceLength + sizeof (AML_RESOURCE_LARGE_HEADER); in AcpiRsGetResourceSource() 498 if (TotalLength > (ACPI_RSDESC_SIZE) (MinimumLength + 1)) in AcpiRsGetResourceSource() 522 TotalLength = (UINT32) strlen ( in AcpiRsGetResourceSource() 525 TotalLength = (UINT32) ACPI_ROUND_UP_TO_NATIVE_WORD (TotalLength); in AcpiRsGetResourceSource() 527 memset (ResourceSource->StringPtr, 0, TotalLength); in AcpiRsGetResourceSource() [all …]
|
| /freebsd-14.2/sys/contrib/dev/acpica/compiler/ |
| H A D | dtutils.c | 888 ParentTable->TotalLength += ChildTable->TotalLength; in DtSetTableLength() 906 ParentTable->TotalLength += ChildTable->TotalLength; in DtSetTableLength()
|
| H A D | dtsubtable.c | 193 Subtable->TotalLength = Length; in DtCreateSubtable() 489 memcpy (Subtable->LengthField, &Subtable->TotalLength, in DtSetSubtableLength()
|
| H A D | dtcompile.c | 644 Subtable->TotalLength = Length; in DtCompileTable() 895 Subtable->TotalLength = Length; in DtCompilePadding()
|
| H A D | dtio.c | 1076 Subtable->Depth, Subtable->Name, Subtable->Length, Subtable->TotalLength, in DtDumpSubtableInfo() 1091 Subtable, Subtable->Length, Subtable->TotalLength, *Subtable->Buffer); in DtDumpSubtableTree()
|
| H A D | dtcompiler.h | 238 UINT32 TotalLength; member
|
| H A D | dttable2.c | 3243 Table->ArgumentsLength = (UINT16) Subtable->TotalLength; in DtCompileWpbt()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Format/ |
| H A D | UnwrappedLineFormatter.cpp | 271 Limit = TheLine->Last->TotalLength > Limit in tryFitMultipleLinesInOne() 273 : Limit - TheLine->Last->TotalLength; in tryFitMultipleLinesInOne() 375 I[J]->Last->TotalLength < Limit; in tryFitMultipleLinesInOne() 377 Limit -= I[J]->Last->TotalLength; in tryFitMultipleLinesInOne() 466 TheLine->Last->TotalLength <= Style.ColumnLimit) in tryFitMultipleLinesInOne() 609 if (1 + I[1]->Last->TotalLength > Limit) in tryMergeSimplePPDirective() 638 if (1 + I[1]->Last->TotalLength > Limit) in tryMergeSimpleControlStatement() 907 return 1 + I[1]->Last->TotalLength + 1 + I[2]->Last->TotalLength <= Limit; in nextTwoLinesFitInto() 930 Tok->TotalLength += LengthA; in join() 1076 State.Column += 1 + Child->Last->TotalLength; in formatChildren() [all …]
|
| H A D | FormatToken.cpp | 184 assert(End->TotalLength >= Begin->TotalLength); in CodePointsBetween() 185 return End->TotalLength - Begin->TotalLength + Begin->ColumnWidth; in CodePointsBetween()
|
| H A D | ContinuationIndenter.cpp | 116 return End->TotalLength - Tok.TotalLength + 1; in getLengthToMatchingParen() 122 return Tok.NextOperator->TotalLength - Tok.TotalLength; in getLengthToNextOperator() 437 (State.Column + State.Line->Last->TotalLength - Previous.TotalLength > in mustBreak() 839 (Previous.TotalLength - Previous.MatchingParen->TotalLength > 10))) { in addTokenOnCurrentLine() 1961 CurrentScopeOpener.TotalLength - Current.TotalLength - 1; in moveStatePastScopeCloser()
|
| H A D | TokenAnnotator.cpp | 3454 First->TotalLength = First->IsMultiline in calculateFormattingInformation() 3611 : LastOfChild.TotalLength + 1; in calculateFormattingInformation() 3617 Current->TotalLength = Prev->TotalLength + Style.ColumnLimit; in calculateFormattingInformation() 3619 Current->TotalLength = Prev->TotalLength + Current->ColumnWidth + in calculateFormattingInformation() 5791 << " Name=" << Tok->Tok.getName() << " L=" << Tok->TotalLength in printDebugInfo()
|
| H A D | UnwrappedLineParser.cpp | 709 auto Length = LastToken->TotalLength; in mightFitOnOneLine() 713 Prev && Prev->TotalLength + ColumnLimit == OpeningBrace->TotalLength) { in mightFitOnOneLine()
|
| H A D | FormatToken.h | 482 unsigned TotalLength = 0; member
|
| /freebsd-14.2/sys/contrib/dev/acpica/components/disassembler/ |
| H A D | dmresrcl.c | 641 UINT32 TotalLength; in AcpiDmResourceSource() local 644 TotalLength = ResourceLength + sizeof (AML_RESOURCE_LARGE_HEADER); in AcpiDmResourceSource() 648 if (TotalLength <= MinimumTotalLength) in AcpiDmResourceSource() 674 if (TotalLength > (MinimumTotalLength + 1)) in AcpiDmResourceSource()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDebugLine.cpp | 106 TotalLength = PrologueLength = 0; in clear() 124 TotalLength) in dump() 372 std::tie(TotalLength, FormParams.Format) = in parse() 376 DWARFDataExtractor(DebugLineData, Cursor.tell() + TotalLength); in parse() 800 uint64_t ProgramLength = Prologue.TotalLength + Prologue.sizeofTotalLength(); in parse() 1523 return TotalLength != 0u; in totalLengthIsValid() 1567 auto [TotalLength, _] = DebugLineData.getInitialLength(Cursor); in hasValidVersion() 1568 DWARFDataExtractor HeaderData(DebugLineData, Cursor.tell() + TotalLength); in hasValidVersion() 1590 Offset = OldOffset + P.TotalLength + P.sizeofTotalLength(); in moveToNextTable()
|
| /freebsd-14.2/sys/contrib/dev/acpica/include/ |
| H A D | acresrc.h | 458 ACPI_RSDESC_SIZE TotalLength, 463 ACPI_RSDESC_SIZE TotalLength,
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCAssembler.cpp | 496 unsigned TotalLength = BundlePadding + static_cast<unsigned>(FSize); in writeFragmentPadding() local 498 if (EF.alignToBundleEnd() && TotalLength > getBundleAlignSize()) { in writeFragmentPadding() 507 unsigned DistanceToBoundary = TotalLength - getBundleAlignSize(); in writeFragmentPadding()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFDebugLine.h | 64 uint64_t TotalLength; member
|
| /freebsd-14.2/stand/efi/include/ |
| H A D | efiip.h | 116 UINT16 TotalLength; member
|