| /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/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/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 | 176 ACPI_SIZE Length; 185 case AML_MID_OP: /* Mid (Source[0], Index[1], Length[2], Result[3]) */ 201 Length = (ACPI_SIZE) Operand[2]->Integer.Value; 204 * If the index is beyond the length of the String/Buffer, or if the 205 * requested length is zero, return a zero-length String/Buffer 207 if (Index >= Operand[0]->String.Length) 209 Length = 0; 214 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...] |
| /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/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).
|
| DWARFDebugAddr.h | 32 /// The total length of the entries for this table, not including the length 34 uint64_t Length = 0; 46 /// Invalidate Length field to stop further processing. 47 void invalidateLength() { Length = 0; } 74 /// Return the full length of this table, including the length field. 75 /// Return None if the length cannot be identified reliably. 81 /// Return the length of this table. 82 uint64_t getLength() const { return Length; } [all...] |
| DWARFDebugArangeSet.h | 25 /// The total length of the entries for that set, not including the length 27 uint64_t Length; 45 uint64_t Length; 47 uint64_t getEndAddress() const { return Address + Length; }
|
| /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/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/lib/Parse/ |
| ParseAST.cpp | 79 unsigned Length = Tok.getLength(); 85 OS << ": current parser token '" << StringRef(Spelling, Length) << "'\n";
|