Searched refs:Length (Results 151 - 175 of 535) sorted by relevance

1234567891011>>

/freebsd-13-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutxface.c618 * Length - Length
632 ACPI_SIZE Length,
646 (UINT32) Length, Warn);
662 * Length - Length of the InBuffer
676 ACPI_SIZE Length,
686 if (!InBuffer || !ReturnBuffer || (Length < ACPI_PLD_REV1_BUFFER_SIZE))
738 if (Length >= ACPI_PLD_REV2_BUFFER_SIZE)
629 AcpiCheckAddressRange( ACPI_ADR_SPACE_TYPE SpaceId, ACPI_PHYSICAL_ADDRESS Address, ACPI_SIZE Length, BOOLEAN Warn) argument
/freebsd-13-stable/sys/contrib/dev/acpica/include/
H A Dactbl.h217 UINT32 Length; /* Length of table in bytes, including this header */ member in struct:acpi_table_header
264 UINT32 Length; /* Table length in bytes, including header (ACPI 2.0+) */ member in struct:acpi_table_rsdp
287 UINT32 Length; member in struct:acpi_rsdp_extension
329 UINT32 Length; /* Length of structure, in bytes */ member in struct:acpi_table_facs
387 UINT8 Pm1EventLength; /* Byte Length of ports at Pm1xEventBlock */
388 UINT8 Pm1ControlLength; /* Byte Length of ports at Pm1xControlBlock */
389 UINT8 Pm2ControlLength; /* Byte Length of ports at Pm2ControlBlock */
390 UINT8 PmTimerLength; /* Byte Length o
513 UINT32 Length; /* Length fixed at 32 bits (fixed in table header) */ member in struct:acpi_table_desc
[all...]
H A Dactbl2.h237 UINT16 Length; member in struct:acpi_iort_node
345 UINT64 Span; /* Length of memory range */
452 UINT16 Length; /* Subtable length */ member in struct:acpi_ivrs_header
535 /* Length of device entry is in the top two bits of Type field above */
654 UINT32 Length; /* Subtable length */ member in struct:acpi_lpit_header
976 UINT32 Length; member in struct:acpi_madt_generic_redistributor
1118 UINT32 Length; member in struct:acpi_mpst_power_node
1220 UINT8 Length; member in struct:acpi_msct_proximity
1294 UINT16 Length; member in struct:acpi_nfit_header
1329 UINT64 Length; member in struct:acpi_nfit_system_address
1575 UINT64 Length; member in struct:acpi_pcct_subspace
1595 UINT64 Length; member in struct:acpi_pcct_hw_reduced
1615 UINT64 Length; member in struct:acpi_pcct_hw_reduced_type2
1638 UINT32 Length; member in struct:acpi_pcct_ext_pcc_master
1669 UINT32 Length; member in struct:acpi_pcct_ext_pcc_slave
1718 UINT32 Length; member in struct:acpi_pcct_ext_pcc_shared_memory
1781 UINT16 Length; member in struct:acpi_pmtt_header
1998 UINT16 Length; member in struct:acpi_rasf_parameter_block
2123 UINT16 Length; member in struct:acpi_sdev_header
[all...]
/freebsd-13-stable/sys/contrib/dev/acpica/components/executer/
H A Dexdump.c213 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (String.Length), "Length"},
221 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (Buffer.Length), "Length"},
260 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (Method.AmlLength), "Aml Length"},
281 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (Region.Length), "Length"},
300 {ACPI_EXD_UINT8 , ACPI_EXD_OFFSET (Processor.Length), "Length"},
390 {ACPI_EXD_UINT32, ACPI_EXD_OFFSET (Extra.AmlLength), "Aml Length"}
746 UINT32 Length; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/DIA/
H A DDIASession.h53 findLineNumbersByAddress(uint64_t Address, uint32_t Length) const override;
55 findLineNumbersByRVA(uint32_t RVA, uint32_t Length) const override;
58 uint32_t Length) const override;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeSession.h69 findLineNumbersByAddress(uint64_t Address, uint32_t Length) const override;
71 findLineNumbersByRVA(uint32_t RVA, uint32_t Length) const override;
74 uint32_t Length) const override;
/freebsd-13-stable/sys/arm64/acpica/
H A Dacpi_machdep.c77 length = header->Length;
124 pmap_unmapbios((vm_offset_t)table, header->Length);
189 count = (xsdt->Header.Length - sizeof(ACPI_TABLE_HEADER)) /
/freebsd-13-stable/sys/contrib/dev/acpica/components/tables/
H A Dtbinstal.c362 UINT32 Length; local
380 &Address, &Length);
381 if (ACPI_SUCCESS (Status) && Address && Length)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DFunctionInfo.cpp121 const auto Length = O.tell() - StartOffset; local
122 if (Length > UINT32_MAX)
126 O.fixup32(static_cast<uint32_t>(Length), StartOffset - 4);
139 const auto Length = O.tell() - StartOffset; local
140 if (Length > UINT32_MAX)
144 O.fixup32(static_cast<uint32_t>(Length), StartOffset - 4);
/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Ddtfield.c274 UINT32 Length; local
277 Length = strlen (Field->Value);
281 if (Length > ByteLength)
285 ByteLength, Length, Field->Value);
287 Length = ByteLength;
290 memcpy (Buffer, Field->Value, Length);
H A Dprexpress.c186 UINT32 Length = strlen (Buffer); local
194 if (Buffer[Length] != '\n')
/freebsd-13-stable/crypto/heimdal/lib/hx509/
H A Dks_keychain.c140 in.Length = flen;
143 sig.Length = kc->keysize;
150 fret = sig.Length;
199 in.Length = flen;
202 out.Length = kc->keysize;
205 rem.Length = sizeof(remdata);
212 fret = out.Length;
423 ret = hx509_cert_init_data(context, cssm.Data, cssm.Length, &cert);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DBinaryStreamWriter.cpp65 Error BinaryStreamWriter::writeStreamRef(BinaryStreamRef Ref, uint32_t Length) { argument
66 BinaryStreamReader SrcReader(Ref.slice(0, Length));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugFrame.cpp309 if (IsEH && Length == 0) {
315 << format(" %0*" PRIx64, IsDWARF64 ? 16 : 8, Length)
345 << format(" %0*" PRIx64, IsDWARF64 ? 16 : 8, Length)
368 uint64_t Offset, int Length) {
370 for (int i = 0; i < Length; ++i) {
384 uint64_t Length;
386 std::tie(Length, Format) = Data.getInitialLength(&Offset);
389 // If the Length is 0, then this CIE is a terminator. We add it because some
392 if (Length == 0) {
401 // At this point, Offset points to the next field after Length
[all...]
/freebsd-13-stable/sys/contrib/dev/acpica/components/debugger/
H A Ddbexec.c309 ReturnObj->Length = ACPI_DEBUG_BUFFER_SIZE;
342 ACPI_DEBUG_BUFFER_SIZE, (UINT32) ReturnObj->Length));
497 ReturnObj.Length = ACPI_ALLOCATE_BUFFER;
606 ReturnObj.Length = ACPI_ALLOCATE_BUFFER;
619 ReturnObj.Length = ACPI_ALLOCATE_BUFFER;
672 if (ReturnObj.Length)
678 (UINT32) ReturnObj.Length);
782 if (ReturnObj.Length)
786 (UINT32) ReturnObj.Length);
853 if (ReturnObj.Length)
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/lib/Format/
H A DBreakableToken.h100 /// byte range [\p Offset, \p Offset \c + \p Length).
108 StringRef::size_type Length,
122 /// is equivalent to getRangeLength with a Length of StringRef::npos.
266 StringRef::size_type Length,
281 // Length of the sequence of tokens after this string literal that cannot
368 StringRef::size_type Length,
431 // Length of the sequence of tokens after this string literal that cannot
444 StringRef::size_type Length,
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMsgPackReader.h91 size_t Length; member in union:llvm::msgpack::Object::__anon3137
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFGdbIndex.h33 uint64_t Length; /// Length of that CU. member in struct:llvm::DWARFGdbIndex::CompUnitEntry
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dfuchsia.cpp175 bool getRandom(void *Buffer, uptr Length, UNUSED bool Blocking) { argument
177 if (UNLIKELY(!Buffer || !Length || Length > MaxRandomLength))
179 _zx_cprng_draw(Buffer, Length);
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/Core/
H A DDiagnostic.h58 unsigned Length; member in struct:clang::tooling::FileByteRange
/freebsd-13-stable/sys/dev/fdc/
H A Dfdc_acpi.c113 buf.Length = ACPI_FDC_BUFLEN;
114 buf.Pointer = malloc(buf.Length, M_TEMP, M_NOWAIT | M_ZERO);
219 buf.Length = ACPI_FDC_BUFLEN;
220 buf.Pointer = malloc(buf.Length, M_TEMP, M_NOWAIT | M_ZERO);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/MCTargetDesc/
H A DSystemZInstPrinter.cpp204 uint64_t Length = MI->getOperand(OpNum + 2).getImm(); local
205 O << Disp << '(' << Length; local
215 unsigned Length = MI->getOperand(OpNum + 2).getReg(); local
216 O << Disp << "(%" << getRegisterName(Length);
/freebsd-13-stable/sys/i386/acpica/
H A Dacpi_machdep.c127 length = header->Length;
175 pmap_unmapbios((vm_offset_t)table, header->Length);
232 count = (xsdt->Header.Length - sizeof(ACPI_TABLE_HEADER)) /
247 count = (rsdt->Header.Length - sizeof(ACPI_TABLE_HEADER)) /
/freebsd-13-stable/stand/efi/include/
H A Defifs.h114 UINT64 Length; member in struct:__anon7969
/freebsd-13-stable/sys/amd64/acpica/
H A Dacpi_machdep.c109 length = header->Length;
157 pmap_unmapbios((vm_offset_t)table, header->Length);
214 count = (xsdt->Header.Length - sizeof(ACPI_TABLE_HEADER)) /
229 count = (rsdt->Header.Length - sizeof(ACPI_TABLE_HEADER)) /

Completed in 290 milliseconds

1234567891011>>