HomeSort by: relevance | last modified time | path
    Searched defs:Length (Results 1 - 25 of 218) sorted by relevancy

1 2 3 4 5 6 7 8 9

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
SymbolSerializer.cpp 48 uint16_t Length = RecordEnd - 2;
50 if (auto EC = Writer.writeInteger(Length))
  /src/sys/external/bsd/acpica/dist/executer/
exstorob.c 71 UINT32 Length;
88 Length = SourceDesc->Buffer.Length;
91 * If target is a buffer of length zero or is a static buffer,
92 * allocate a new buffer of the proper length
94 if ((TargetDesc->Buffer.Length == 0) ||
97 TargetDesc->Buffer.Pointer = ACPI_ALLOCATE (Length);
103 TargetDesc->Buffer.Length = Length;
108 if (Length <= TargetDesc->Buffer.Length
    [all...]
exoparg3.c 169 ACPI_SIZE Length;
178 case AML_MID_OP: /* Mid (Source[0], Index[1], Length[2], Result[3]) */
194 Length = (ACPI_SIZE) Operand[2]->Integer.Value;
197 * If the index is beyond the length of the String/Buffer, or if the
198 * requested length is zero, return a zero-length String/Buffer
200 if (Index >= Operand[0]->String.Length)
202 Length = 0;
207 else if ((Index + Length) > Operand[0]->String.Length)
    [all...]
exoparg2.c 286 ACPI_SIZE Length = 0;
339 case AML_TO_STRING_OP: /* ToString (Buffer, Length, Result) (ACPI 2.0) */
347 * Get the length of the new string. It is the smallest of:
348 * 1) Length of the input buffer
349 * 2) Max length as specified in the ToString operator
350 * 3) Length of input buffer up to a zero byte (null terminator)
352 * NOTE: A length of zero is ok, and will create a zero-length, null
355 while ((Length < Operand[0]->Buffer.Length) && /* Length of input buffer *
    [all...]
exregion.c 84 UINT32 Length;
100 Length = 1;
105 Length = 2;
110 Length = 4;
115 Length = 8;
130 (void) AcpiUtShortDivide ((UINT64) Address, Length, NULL, &Remainder);
143 ((UINT64) Address + Length > (UINT64) Mm->PhysicalAddress + Mm->Length))
164 if ((UINT64) Address + Length > (UINT64) Mm->PhysicalAddress + Mm->Length)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/GSYM/
FileWriter.cpp 22 auto Length = encodeSLEB128(S, Bytes);
23 assert(Length < sizeof(Bytes));
24 OS.write(reinterpret_cast<const char *>(Bytes), Length);
29 auto Length = encodeULEB128(U, Bytes);
30 assert(Length < sizeof(Bytes));
31 OS.write(reinterpret_cast<const char *>(Bytes), Length);
  /src/external/apache2/llvm/dist/llvm/lib/Support/
LineIterator.cpp 91 size_t Length = 0;
92 while (Pos[Length] != '\0' && !isAtLineEnd(&Pos[Length])) {
93 ++Length;
96 CurrentLine = StringRef(Pos, Length);
Unicode.cpp 346 unsigned Length;
347 for (size_t i = 0, e = Text.size(); i < e; i += Length) {
348 Length = getNumBytesForUTF8(Text[i]);
351 if (Length == 1) {
358 if (Length <= 0 || i + Length > Text.size())
363 if (conversionOK != ConvertUTF8toUTF32(&Start, Start + Length, &Target,
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
NativeTypeBuiltin.h 43 uint64_t Length;
NativeLineNumber.h 23 uint32_t ColumnNumber, uint32_t Length,
46 uint32_t Length;
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFDataExtractor.cpp 21 uint64_t Length = getRelocatedValue(C, 4);
23 if (Length == dwarf::DW_LENGTH_DWARF64) {
24 Length = getRelocatedValue(C, 8);
26 } else if (Length >= dwarf::DW_LENGTH_lo_reserved) {
31 "unsupported reserved unit length of value 0x%8.8" PRIx64, Length);
37 return {Length, Format};
  /src/sys/external/bsd/acpica/dist/compiler/
asllisting.c 371 UINT32 Length;
607 Length = strlen (Pathname);
608 if (Length >= 4)
612 for (i = 0; i < Length; i++)
asloffset.c 98 UINT32 Length;
144 Length = Op->Asl.FinalAmlLength;
146 /* Get to the NameSeg/NamePath Op (and length of the name) */
152 NamepathOffset = AslGbl_CurrentAmlOffset + Length +
155 DataOffset = AslGbl_CurrentAmlOffset + Length +
202 AslGbl_CurrentAmlOffset += Length;
209 Length = Op->Asl.FinalAmlLength;
217 NamepathOffset = AslGbl_CurrentAmlOffset + Length +
220 DataOffset = AslGbl_CurrentAmlOffset + Length +
244 AslGbl_CurrentAmlOffset += Length;
    [all...]
prexpress.c 78 UINT32 Length = strlen (Buffer);
86 if (Buffer[Length] != '\n')
150 /* Adjust for length difference between old and new name length */
  /src/sys/external/bsd/acpica/dist/tables/
tbinstal.c 161 "Could not acquire table length at %8.8X%8.8X",
257 UINT32 Length;
275 &Address, &Length);
276 if (ACPI_SUCCESS (Status) && Address && Length)
  /src/sys/external/bsd/acpica/dist/tools/acpisrc/
ascase.c 173 UINT32 Length;
410 Length = 0;
422 Length = SubString - SubBuffer - 1;
429 if (!Length)
431 Length = strlen (&SubBuffer[0]);
446 memmove (&SubBuffer[1], &SubBuffer[0], Length + 1);
584 UINT32 Length;
607 Length = 0;
614 Length = SubString - &SubBuffer[i] - 2;
621 if (!Length)
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/Tooling/
ReplacementsYaml.h 34 : FilePath(""), Offset(0), Length(0), ReplacementText("") {}
38 Length(R.getLength()), ReplacementText(R.getReplacementText()) {}
41 return clang::tooling::Replacement(FilePath, Offset, Length,
47 unsigned int Length;
56 Io.mapRequired("Length", Keys->Length);
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
DebugSubsectionRecord.h 32 support::ulittle32_t Length; // number of bytes occupied by this record.
75 Error operator()(BinaryStreamRef Stream, uint32_t &Length,
79 // its length and we can just skip it. It's more important when writing.
82 Length = alignTo(Info.getRecordLength(), 4);
DebugSymbolsSubsection.h 49 uint32_t Length = 0;
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/
DWARFDebugAranges.h 37 : LowPC(LowPC), Length(HighPC - LowPC), CUOffset(CUOffset) {}
41 Length = 0;
43 Length = HighPC - LowPC;
47 if (Length)
48 return LowPC + Length;
57 uint64_t Length; /// End of address range (not including this address).
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
ByteStreamer.h 98 unsigned Length = encodeSLEB128(DWord, OSE);
103 for (size_t i = 1; i < Length; ++i)
111 unsigned Length = encodeULEB128(DWord, OSE, PadTo);
116 for (size_t i = 1; i < Length; ++i)
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
InfoStreamBuilder.cpp 50 uint32_t Length = sizeof(InfoStreamHeader) +
53 if (auto EC = Msf.setStreamSize(StreamPDB, Length))
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
ARMWinEHPrinter.h 32 uint8_t Length;
39 unsigned Length, bool Prologue);
41 unsigned Length, bool Prologue);
43 unsigned Length, bool Prologue);
45 unsigned Length, bool Prologue);
47 unsigned Length, bool Prologue);
49 unsigned Length, bool Prologue);
51 unsigned Length, bool Prologue);
53 unsigned Length, bool Prologue);
55 unsigned Length, bool Prologue)
    [all...]
  /src/sys/external/bsd/acpica/dist/common/
dmtbdump.c 60 UINT32 Length);
69 * Length - Length of the buffer
76 * DESCRIPTION: Format the contents of an arbitrary length data buffer (in the
85 UINT32 Length,
95 if (!Length)
103 while (i < Length)
105 if ((Length > 16) && (i != 0))
107 if ((Length - i) < 16)
108 AcpiOsPrintf ("\n/* %3.3Xh %4.4u %3u */ ", AbsoluteOffset, AbsoluteOffset, Length - i)
    [all...]
  /src/sys/external/bsd/acpica/dist/utilities/
utids.c 78 UINT32 Length;
96 Length = ACPI_EISAID_STRING_SIZE;
100 Length = ObjDesc->String.Length + 1;
106 sizeof (ACPI_PNP_DEVICE_ID) + (ACPI_SIZE) Length);
128 Hid->Length = Length;
166 UINT32 Length;
184 Length = ACPI_MAX64_DECIMAL_DIGITS + 1;
188 Length = ObjDesc->String.Length + 1
    [all...]

Completed in 42 milliseconds

1 2 3 4 5 6 7 8 9