| /freebsd-12.1/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-12.1/contrib/llvm/include/llvm/ObjectYAML/ |
| H A D | DWARFYAML.h | 29 uint32_t TotalLength; member 32 bool isDWARF64() const { return TotalLength == UINT32_MAX; } in isDWARF64() 35 return isDWARF64() ? TotalLength64 : TotalLength; in getLength() 41 TotalLength = UINT32_MAX; in setLength() 43 TotalLength = Len; in setLength()
|
| /freebsd-12.1/sys/contrib/dev/acpica/compiler/ |
| H A D | dtutils.c | 830 ParentTable->TotalLength += ChildTable->TotalLength; in DtSetTableLength() 848 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 | 597 Subtable->TotalLength = Length; in DtCompileTable() 840 Subtable->TotalLength = Length; in DtCompilePadding()
|
| H A D | dtio.c | 1121 Subtable->Depth, Subtable->Name, Subtable->Length, Subtable->TotalLength, in DtDumpSubtableInfo() 1136 Subtable, Subtable->Length, Subtable->TotalLength); in DtDumpSubtableTree()
|
| H A D | dtcompiler.h | 227 UINT32 TotalLength; member
|
| H A D | dttable2.c | 2241 Length = (UINT16) Subtable->TotalLength; in DtCompileWpbt()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Format/ |
| H A D | UnwrappedLineFormatter.cpp | 210 Limit = TheLine->Last->TotalLength > Limit in tryFitMultipleLinesInOne() 212 : Limit - TheLine->Last->TotalLength; in tryFitMultipleLinesInOne() 258 I[i + 1]->Last->TotalLength < Limit; in tryFitMultipleLinesInOne() 263 Limit -= I[i + 1]->Last->TotalLength; in tryFitMultipleLinesInOne() 392 if (1 + I[1]->Last->TotalLength > Limit) in tryMergeSimplePPDirective() 412 if (1 + I[1]->Last->TotalLength > Limit) in tryMergeSimpleControlStatement() 628 return 1 + I[1]->Last->TotalLength + 1 + I[2]->Last->TotalLength <= Limit; in nextTwoLinesFitInto() 649 Tok->TotalLength += LengthA; in join() 759 Child->Last->TotalLength + State.Column + 2 > Style.ColumnLimit) in formatChildren() 770 State.Column += 1 + Child->Last->TotalLength; in formatChildren() [all …]
|
| H A D | FormatToken.cpp | 148 assert(End->TotalLength >= Begin->TotalLength); in CodePointsBetween() 149 return End->TotalLength - Begin->TotalLength + Begin->ColumnWidth; in CodePointsBetween()
|
| H A D | ContinuationIndenter.cpp | 105 return End->TotalLength - Tok.TotalLength + 1; in getLengthToMatchingParen() 111 return Tok.NextOperator->TotalLength - Tok.TotalLength; in getLengthToNextOperator() 374 (State.Column + State.Line->Last->TotalLength - Previous.TotalLength > in mustBreak() 641 (Previous.TotalLength - Previous.MatchingParen->TotalLength > 10))) in addTokenOnCurrentLine() 1422 CurrentScopeOpener.TotalLength - Current.TotalLength - 1; in moveStatePastScopeCloser()
|
| H A D | TokenAnnotator.cpp | 2080 Line.First->TotalLength = in calculateFormattingInformation() 2133 : LastOfChild.TotalLength + 1; in calculateFormattingInformation() 2140 Current->TotalLength = Prev->TotalLength + Style.ColumnLimit; in calculateFormattingInformation() 2142 Current->TotalLength = Prev->TotalLength + Current->ColumnWidth + in calculateFormattingInformation() 3364 << " Name=" << Tok->Tok.getName() << " L=" << Tok->TotalLength in printDebugInfo()
|
| H A D | FormatToken.h | 211 unsigned TotalLength = 0; member
|
| /freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFDebugLine.cpp | 71 TotalLength = PrologueLength = 0; in clear() 85 << format(" total_length: 0x%8.8" PRIx64 "\n", TotalLength) in dump() 284 TotalLength = DebugLineData.getU32(OffsetPtr); in parse() 285 if (TotalLength == UINT32_MAX) { in parse() 287 TotalLength = DebugLineData.getU64(OffsetPtr); in parse() 288 } else if (TotalLength >= 0xffffff00) { in parse() 292 PrologueOffset, TotalLength); in parse() 495 DebugLineOffset + Prologue.TotalLength + Prologue.sizeofTotalLength(); in parse() 1061 return TotalLength == 0xffffffff || TotalLength < 0xffffff00; in totalLengthIsValid() 1110 Offset = OldOffset + P.TotalLength + P.sizeofTotalLength(); in moveToNextTable()
|
| /freebsd-12.1/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-12.1/contrib/llvm/include/llvm/DebugInfo/DWARF/ |
| H A D | DWARFDebugLine.h | 68 uint64_t TotalLength; member 118 return TotalLength + sizeofTotalLength() - getLength(); in getStatementTableLength()
|
| /freebsd-12.1/sys/contrib/dev/acpica/include/ |
| H A D | acresrc.h | 456 ACPI_RSDESC_SIZE TotalLength, 461 ACPI_RSDESC_SIZE TotalLength,
|
| /freebsd-12.1/contrib/llvm/lib/MC/ |
| H A D | MCAssembler.cpp | 467 unsigned TotalLength = BundlePadding + static_cast<unsigned>(FSize); in writeFragmentPadding() local 468 if (EF.alignToBundleEnd() && TotalLength > getBundleAlignSize()) { in writeFragmentPadding() 477 unsigned DistanceToBoundary = TotalLength - getBundleAlignSize(); in writeFragmentPadding()
|
| /freebsd-12.1/contrib/llvm/lib/ObjectYAML/ |
| H A D | DWARFYAML.cpp | 169 IO.mapRequired("TotalLength", InitialLength.TotalLength); in mapping()
|
| H A D | DWARFEmitter.cpp | 67 writeInteger((uint32_t)Length.TotalLength, OS, IsLittleEndian); in writeInitialLength()
|