Searched refs:Length (Results 26 - 50 of 535) sorted by relevance

1234567891011>>

/freebsd-13-stable/sys/contrib/dev/acpica/components/tables/
H A Dtbutils.c238 if (AcpiGbl_OriginalDsdtHeader.Length != AcpiGbl_DSDT->Length ||
250 AcpiGbl_OriginalDsdtHeader.Length = AcpiGbl_DSDT->Length;
280 NewTable = ACPI_ALLOCATE (TableDesc->Length);
284 TableDesc->Length));
288 memcpy (NewTable, TableDesc->Pointer, TableDesc->Length);
298 NewTable->Length));
394 UINT32 Length; local
456 Length
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugAddr.cpp48 std::tie(Length, Format) = Data.getInitialLength(OffsetPtr, &Err);
57 if (!Data.isValidOffsetForDataOfSize(*OffsetPtr, Length)) {
58 uint64_t DiagnosticLength = Length;
66 uint64_t EndOffset = *OffsetPtr + Length;
68 if (Length < 4) {
69 uint64_t DiagnosticLength = Length;
115 Length = 0;
140 if (Length) {
143 << format("length = 0x%0*" PRIx64, OffsetDumpWidth, Length)
170 if (Length
[all...]
H A DDWARFDataExtractor.cpp21 uint64_t Length = getRelocatedValue(C, 4); local
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};
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DStringRef.cpp27 static int ascii_strncasecmp(const char *LHS, const char *RHS, size_t Length) { argument
28 for (size_t I = 0; I < Length; ++I) {
39 if (int Res = ascii_strncasecmp(Data, RHS.Data, std::min(Length, RHS.Length)))
41 if (Length == RHS.Length)
43 return Length < RHS.Length ? -1 : 1;
48 return Length >= Prefix.Length
[all...]
H A DBinaryStreamReader.cpp92 size_t Length = FoundOffset - OriginalOffset; local
94 if (auto EC = readFixedString(Dest, Length))
103 uint32_t Length = 0; local
111 ++Length;
116 if (auto EC = readArray(Dest, Length))
122 Error BinaryStreamReader::readFixedString(StringRef &Dest, uint32_t Length) { argument
124 if (auto EC = readBytes(Bytes, Length))
134 Error BinaryStreamReader::readStreamRef(BinaryStreamRef &Ref, uint32_t Length) { argument
135 if (bytesRemaining() < Length)
137 Ref = Stream.slice(Offset, Length);
142 readSubstream(BinarySubstreamRef &Ref, uint32_t Length) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeLineNumber.cpp17 uint32_t Offset, uint32_t Length,
20 Section(Section), Offset(Offset), Length(Length), SrcFileId(SrcFileId) {}
44 uint32_t NativeLineNumber::getLength() const { return Length; }
14 NativeLineNumber(const NativeSession &Session, const codeview::LineInfo Line, uint32_t ColumnNumber, uint32_t Section, uint32_t Offset, uint32_t Length, uint32_t SrcFileId) argument
H A DNativeTypeBuiltin.cpp20 Session(PDBSession), Mods(Mods), Type(T), Length(L) {}
38 uint64_t NativeTypeBuiltin::getLength() const { return Length; }
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-dwp/
H A DDWPStringPool.h41 uint32_t getOffset(const char *Str, unsigned Length) { argument
42 assert(strlen(Str) + 1 == Length && "Ensure length hint is correct");
47 Out.emitBytes(StringRef(Str, Length));
48 Offset += Length;
/freebsd-13-stable/sys/contrib/dev/acpica/components/namespace/
H A Dnsconvert.c205 if (OriginalObject->Buffer.Length > 8)
212 for (i = 0; i < OriginalObject->Buffer.Length; i++)
254 ACPI_SIZE Length; local
294 Length = 0;
295 while ((Length < OriginalObject->Buffer.Length) &&
296 (OriginalObject->Buffer.Pointer[Length]))
298 Length++;
303 NewObject = AcpiUtCreateStringObject (Length);
311 * terminated at Length
[all...]
/freebsd-13-stable/sys/contrib/dev/acpica/components/resources/
H A Drscreate.c166 * AmlBufferLength - Length of the AmlBuffer
279 AmlBufferLength = AmlBuffer->Buffer.Length;
314 ACPI_DEBUG_PRINT ((ACPI_DB_INFO, "OutputBuffer %p Length %X\n",
315 OutputBuffer->Pointer, (UINT32) OutputBuffer->Length));
330 * AE_BUFFER_OVERFLOW and OutputBuffer->Length will point
399 * NOTE: On the first iteration, UserPrt->Length will
402 Buffer += UserPrt->Length;
406 * Fill in the Length field with the information we have at this
410 UserPrt->Length = (sizeof (ACPI_PCI_ROUTING_TABLE) - 4);
477 PathBuffer.Length
[all...]
H A Drsdump.c196 UINT16 Length,
201 UINT16 Length,
206 UINT8 Length,
211 UINT8 Length,
283 if (!ResourceList->Length)
348 for (Count = 0; PrtElement->Length; Count++)
354 PrtElement, PrtElement->Length);
757 * PARAMETERS: Length - Number of elements in the list
768 UINT16 Length,
774 for (i = 0; i < Length;
767 AcpiRsDumpByteList( UINT16 Length, UINT8 *Data) argument
781 AcpiRsDumpShortByteList( UINT8 Length, UINT8 *Data) argument
797 AcpiRsDumpDwordList( UINT8 Length, UINT32 *Data) argument
811 AcpiRsDumpWordList( UINT16 Length, UINT16 *Data) argument
[all...]
/freebsd-13-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutobject.c405 BufferDesc->Buffer.Length = (UINT32) BufferSize;
463 StringDesc->String.Length = (UINT32) StringSize;
624 ACPI_SIZE Length; local
634 Length = sizeof (ACPI_OBJECT);
644 *ObjLength = ACPI_ROUND_UP_TO_NATIVE_WORD (Length);
671 Length += (ACPI_SIZE) InternalObject->String.Length + 1;
676 Length += (ACPI_SIZE) InternalObject->Buffer.Length;
702 Length
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DScheduleDFS.h36 /// Length may either correspond to depth or height, depending on direction,
38 unsigned Length; member in struct:llvm::ILPValue
41 InstrCount(count), Length(length) {}
45 return (uint64_t)InstrCount * RHS.Length
46 < (uint64_t)Length * RHS.InstrCount;
52 return (uint64_t)InstrCount * RHS.Length
53 <= (uint64_t)Length * RHS.InstrCount;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIInsertHardClauses.cpp107 unsigned Length = 0; member in struct:__anon3974::SIInsertHardClauses::ClauseInfo
160 if (CI.Length == 64 ||
161 (CI.Length && Type != HARDCLAUSE_INTERNAL &&
174 if (CI.Length) {
176 ++CI.Length;
188 if (CI.Length)
/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Ddtio.c182 UINT32 Length);
230 ACPI_SIZE Length; local
284 Length = ACPI_PTR_DIFF (End, Start) + 1;
285 ReturnString = UtLocalCacheCalloc (Length + 1);
288 strncpy (ReturnString, Start, Length);
291 ReturnString[Length] = 0;
323 UINT32 Length; local
377 Length = ACPI_PTR_DIFF (End, Start);
379 TmpName = UtLocalCalloc (Length + 1);
380 strncpy (TmpName, Start, Length);
944 DtDumpBuffer( UINT32 FileId, UINT8 *Buffer, UINT32 Offset, UINT32 Length) argument
1148 DtWriteFieldToListing( UINT8 *Buffer, DT_FIELD *Field, UINT32 Length) argument
[all...]
H A Ddtsubtable.c163 * Length - Buffer length
177 UINT32 Length,
188 String = UtLocalCacheCalloc (Length);
190 memcpy (Subtable->Buffer, Buffer, Length);
192 Subtable->Length = Length;
193 Subtable->TotalLength = Length;
175 DtCreateSubtable( UINT8 *Buffer, UINT32 Length, DT_SUBTABLE **RetSubtable) argument
H A Daslfileio.c260 * Length - Amount to read
273 UINT32 Length)
280 Actual = fread (Buffer, 1, Length, AslGbl_Files[FileId].Handle);
281 if (Actual < Length)
304 * Length - Amount of data to write
317 UINT32 Length)
324 Actual = fwrite ((char *) Buffer, 1, Length, AslGbl_Files[FileId].Handle);
325 if (Actual != Length)
335 Actual = fwrite ((char *) Buffer, 1, Length,
337 if (Actual != Length)
270 FlReadFile( UINT32 FileId, void *Buffer, UINT32 Length) argument
314 FlWriteFile( UINT32 FileId, void *Buffer, UINT32 Length) argument
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/Core/
H A DReplacement.h47 Range(unsigned Offset, unsigned Length) : Offset(Offset), Length(Length) {} argument
52 unsigned getLength() const { return Length; }
59 return Offset + Length > RHS.Offset && Offset < RHS.Offset + RHS.Length;
65 (RHS.Offset + RHS.Length) <= (Offset + Length);
70 return Offset == RHS.getOffset() && Length == RHS.getLength();
76 unsigned Length member in class:clang::tooling::Range
[all...]
/freebsd-13-stable/sys/contrib/dev/acpica/components/executer/
H A Dexregion.c192 UINT32 Length; local
209 Length = 1;
214 Length = 2;
219 Length = 4;
224 Length = 8;
239 (void) AcpiUtShortDivide ((UINT64) Address, Length, NULL, &Remainder);
252 ((UINT64) Address + Length > (UINT64) Mm->PhysicalAddress + Mm->Length))
273 if ((UINT64) Address + Length > (UINT64) Mm->PhysicalAddress + Mm->Length)
[all...]
H A Dexoparg2.c394 ACPI_SIZE Length = 0; local
447 case AML_TO_STRING_OP: /* ToString (Buffer, Length, Result) (ACPI 2.0) */
456 * 1) Length of the input buffer
458 * 3) Length of input buffer up to a zero byte (null terminator)
463 while ((Length < Operand[0]->Buffer.Length) && /* Length of input buffer */
464 (Length < Operand[1]->Integer.Value) && /* Length operand */
465 (Operand[0]->Buffer.Pointer[Length])) /* Nul
[all...]
/freebsd-13-stable/contrib/bearssl/T0/
H A DBlobWriter.cs102 if ((lineLen + 1 + expr.Length) > maxLineLen) {
110 lineLen += expr.Length;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeLineNumber.h23 uint32_t ColumnNumber, uint32_t Length,
46 uint32_t Length; member in class:llvm::pdb::NativeLineNumber
/freebsd-13-stable/contrib/googletest/googletest/samples/
H A Dsample2_unittest.cc71 EXPECT_EQ(0u, s.Length());
81 s.Length());
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp70 static void writeInitialLength(const DWARFYAML::InitialLength &Length, argument
72 writeInteger((uint32_t)Length.TotalLength, OS, IsLittleEndian);
73 if (Length.isDWARF64())
74 writeInteger((uint64_t)Length.TotalLength64, OS, IsLittleEndian);
78 const uint64_t Length, raw_ostream &OS,
85 writeVariableSizedInteger(Length, IsDWARF64 ? 8 : 4, OS, IsLittleEndian));
124 writeInitialLength(Range.Format, Range.Length, OS, DI.IsLittleEndian);
143 cantFail(writeVariableSizedInteger(Descriptor.Length, Range.AddrSize, OS,
192 writeInitialLength(Sect.Length, OS, IsLittleEndian);
215 writeInitialLength(CU.Format, CU.Length, O
77 writeInitialLength(const dwarf::DwarfFormat Format, const uint64_t Length, raw_ostream &OS, bool IsLittleEndian) argument
386 uint64_t Length; local
438 uint64_t Length; member in class:__anon3754::DIEFixupVisitor
[all...]
/freebsd-13-stable/usr.sbin/wpa/wpa_supplicant/
H A DPacket32.h45 uint32_t Length; member in struct:PACKET_OID_DATA

Completed in 137 milliseconds

1234567891011>>