Searched refs:Length (Results 1 - 25 of 535) sorted by relevance

1234567891011>>

/freebsd-13-stable/sys/contrib/dev/acpica/components/executer/
H A Dexstorob.c179 UINT32 Length; local
196 Length = SourceDesc->Buffer.Length;
202 if ((TargetDesc->Buffer.Length == 0) ||
205 TargetDesc->Buffer.Pointer = ACPI_ALLOCATE (Length);
211 TargetDesc->Buffer.Length = Length;
216 if (Length <= TargetDesc->Buffer.Length)
220 memset (TargetDesc->Buffer.Pointer, 0, TargetDesc->Buffer.Length);
284 UINT32 Length; local
[all...]
H A Dexoparg3.c290 ACPI_SIZE Length; local
299 case AML_MID_OP: /* Mid (Source[0], Index[1], Length[2], Result[3]) */
315 Length = (ACPI_SIZE) Operand[2]->Integer.Value;
321 if (Index >= Operand[0]->String.Length)
323 Length = 0;
328 else if ((Index + Length) > Operand[0]->String.Length)
330 Length =
331 (ACPI_SIZE) Operand[0]->String.Length - (ACPI_SIZE) Index;
342 Buffer = ACPI_ALLOCATE_ZEROED ((ACPI_SIZE) Length
[all...]
H A Dexconfig.c176 UINT32 Length,
288 if (Operand[3]->String.Length > 0)
305 if (Operand[4]->String.Length > 0)
378 * Length - Number of bytes to read
391 UINT32 Length,
402 for (i = 0; i < Length; i++)
452 UINT32 Length; local
475 * If the Region Address and Length have not been previously
497 Length = TableHeader->Length;
389 AcpiExRegionRead( ACPI_OPERAND_OBJECT *ObjDesc, UINT32 Length, UINT8 *Buffer) argument
[all...]
/freebsd-13-stable/sys/contrib/dev/acpica/common/
H A Ddmtbdump2.c186 UINT32 Length; local
195 Status = AcpiDmDumpTable (Table->Length, 0, Table, 0, AcpiDmTableInfoIort);
208 Status = AcpiDmDumpTable (Table->Length, Offset, Table,
217 while (Offset < Table->Length)
223 Length = ACPI_OFFSET (ACPI_IORT_NODE, NodeData);
224 Status = AcpiDmDumpTable (Table->Length, Offset,
225 IortNode, Length, AcpiDmTableInfoIortHdr);
231 NodeOffset = Length;
238 Length = ACPI_OFFSET (ACPI_IORT_ITS_GROUP, Identifiers);
245 Length
645 UINT32 Length = Table->Length; local
718 UINT32 Length = Table->Length; local
1189 UINT32 Length; local
1382 UINT32 Length = Table->Length; local
1481 UINT32 Length = Table->Length; local
1537 UINT32 Length = Table->Length; local
1740 UINT8 Length; local
1967 UINT32 Length = Table->Length; local
[all...]
H A Ddmtbdump.c168 UINT32 Length);
177 * Length - Length of the buffer
193 UINT32 Length,
201 if (!Length)
209 while (i < Length)
215 if (Length > 16)
237 * ByteLength - Length of the buffer
255 UINT32 Length; local
260 Length
190 AcpiDmDumpBuffer( void *Table, UINT32 BufferOffset, UINT32 Length, UINT32 AbsoluteOffset, char *Header) argument
318 UINT32 Length = sizeof (ACPI_RSDP_COMMON); local
556 AcpiDmValidateFadtLength( UINT32 Revision, UINT32 Length) argument
[all...]
H A Ddmtbdump1.c195 while (Offset < Table->Length)
199 Status = AcpiDmDumpTable (Table->Length, Offset, Subtable,
200 Subtable->Header.Length, AcpiDmTableInfoAsfHdr);
257 Status = AcpiDmDumpTable (Table->Length, Offset, Subtable,
258 Subtable->Header.Length, InfoTable);
274 Status = AcpiDmDumpTable (Table->Length, DataOffset,
299 if (DataOffset > Table->Length)
320 if (!Subtable->Header.Length)
326 Offset += Subtable->Header.Length;
328 Subtable->Header.Length);
352 UINT32 Length = Table->Length; local
407 UINT32 Length = Table->Length; local
514 UINT32 Length = Table->Length; local
632 UINT32 Length = Table->Length; local
901 UINT32 Length = Table->Length; local
954 UINT32 Length = Table->Length; local
1007 UINT32 Length = Table->Length; local
1092 UINT32 Length = Table->Length; local
1228 UINT32 Length = Table->Length; local
1386 UINT32 Length; local
[all...]
H A Ddmtbdump3.c180 (void) AcpiDmDumpTable (Table->Length, sizeof (ACPI_TABLE_HEADER), Table,
181 Table->Length - sizeof (*Table), AcpiDmTableInfoSlic);
211 Status = AcpiDmDumpTable (Table->Length, 0, Table, 0, AcpiDmTableInfoSlit);
232 if (Offset >= Table->Length)
288 Status = AcpiDmDumpTable (Table->Length, 0, Table, 0, AcpiDmTableInfoSrat);
297 while (Offset < Table->Length)
302 Status = AcpiDmDumpTable (Table->Length, Offset, Subtable,
303 Subtable->Length, AcpiDmTableInfoSratHdr);
347 if (!Subtable->Length)
356 Status = AcpiDmDumpTable (Table->Length, Offse
393 UINT32 Length = Table->Length; local
729 UINT32 Length = Table->Length; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.h31 uint8_t Length; member in struct:llvm::ARM::WinEH::Decoder::RingEntry
38 unsigned Length, bool Prologue);
40 unsigned Length, bool Prologue);
42 unsigned Length, bool Prologue);
44 unsigned Length, bool Prologue);
46 unsigned Length, bool Prologue);
48 unsigned Length, bool Prologue);
50 unsigned Length, bool Prologue);
52 unsigned Length, bool Prologue);
54 unsigned Length, boo
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dstring_utils.h21 explicit ScopedString(uptr MaxLength) : String(MaxLength), Length(0) {
24 uptr length() { return Length; }
28 Length = 0;
36 uptr Length; member in class:scudo::ScopedString
/freebsd-13-stable/sys/contrib/edk2/Include/Library/
H A DBaseMemoryLib.h19 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
23 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
24 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
28 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
38 IN UINTN Length
44 This function fills Length bytes of Buffer with Value, and returns Buffer.
46 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
49 @param Length The number of bytes to set.
50 @param Value The value with which to fill Length bytes of Buffer.
59 IN UINTN Length,
[all...]
/freebsd-13-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutids.c186 UINT32 Length; local
204 Length = ACPI_EISAID_STRING_SIZE;
208 Length = ObjDesc->String.Length + 1;
214 sizeof (ACPI_PNP_DEVICE_ID) + (ACPI_SIZE) Length);
236 Hid->Length = Length;
274 UINT32 Length; local
292 Length = ACPI_MAX64_DECIMAL_DIGITS + 1;
296 Length
370 UINT32 Length; local
522 UINT32 Length; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/PBQP/
H A DMath.h30 explicit Vector(unsigned Length) argument
31 : Length(Length), Data(std::make_unique<PBQPNum []>(Length)) {}
34 Vector(unsigned Length, PBQPNum InitVal) argument
35 : Length(Length), Data(std::make_unique<PBQPNum []>(Length)) {
36 std::fill(Data.get(), Data.get() + Length, InitVal);
41 : Length(
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DBinaryStreamRef.h30 Length = BorrowedImpl.getLength();
34 Optional<uint32_t> Length)
36 ViewOffset(Offset), Length(Length) {}
38 Optional<uint32_t> Length)
39 : BorrowedImpl(&BorrowedImpl), ViewOffset(Offset), Length(Length) {}
52 if (Length.hasValue())
53 return *Length;
71 if (Result.Length
33 BinaryStreamRefBase(std::shared_ptr<StreamType> SharedImpl, uint32_t Offset, Optional<uint32_t> Length) argument
37 BinaryStreamRefBase(StreamType &BorrowedImpl, uint32_t Offset, Optional<uint32_t> Length) argument
146 Optional<uint32_t> Length; member in class:llvm::BinaryStreamRefBase
160 BinaryStreamRef(std::shared_ptr<BinaryStream> Impl, uint32_t ViewOffset, Optional<uint32_t> Length) argument
226 WritableBinaryStreamRef(std::shared_ptr<WritableBinaryStream> Impl, uint32_t ViewOffset, Optional<uint32_t> Length) argument
[all...]
/freebsd-13-stable/sys/contrib/dev/acpica/components/tables/
H A Dtbprint.c165 ACPI_SIZE Length);
178 * Length - Maximum length
190 ACPI_SIZE Length)
193 while (Length && *String)
201 Length--;
262 Header->Length));
275 ACPI_CAST_PTR (ACPI_TABLE_RSDP, Header)->Length : 20,
289 LocalHeader.Length, LocalHeader.Revision, LocalHeader.OemId,
301 * Length - Length o
188 AcpiTbFixString( char *String, ACPI_SIZE Length) argument
311 AcpiTbVerifyChecksum( ACPI_TABLE_HEADER *Table, UINT32 Length) argument
366 AcpiTbChecksum( UINT8 *Buffer, UINT32 Length) argument
[all...]
H A Dtbfadt.c192 UINT16 Length; member in struct:acpi_fadt_info
450 UINT32 Length; local
469 Length = FadtDesc->Length;
475 (void) AcpiTbVerifyChecksum (Table, Length);
479 AcpiTbCreateLocalFadt (Table, Length);
519 * Length - Length of the table
533 UINT32 Length)
541 if (Length > sizeo
531 AcpiTbCreateLocalFadt( ACPI_TABLE_HEADER *Table, UINT32 Length) argument
628 UINT8 Length; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugAranges.h37 : 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). member in struct:llvm::DWARFDebugAranges::Range
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DReplacementsYaml.h34 : 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; member in struct:llvm::yaml::MappingTraits::NormalizedReplacement
56 Io.mapRequired("Length", Keys->Length);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DLineIterator.cpp87 size_t Length = 0; local
88 while (Pos[Length] != '\0' && !isAtLineEnd(&Pos[Length])) {
89 ++Length;
92 CurrentLine = StringRef(Pos, Length);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringRef.h70 size_t Length = 0; member in class:llvm::StringRef
74 static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) { argument
75 if (Length == 0) { return 0; }
76 return ::memcmp(Lhs,Rhs,Length);
107 : Data(Str), Length(Str ? strLen(Str) : 0) {}
111 : Data(data), Length(length) {}
115 : Data(Str.data()), Length(Str.length()) {}
120 : Data(Str.data()), Length(Str.size()) {}
133 iterator end() const { return Data + Length; }
156 bool empty() const { return Length
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DValueProfilePlugins.inc43 Value *Length = MI.getLength();
45 if (dyn_cast<ConstantInt>(Length))
50 Candidates->emplace_back(CandidateInfo{Length, InsertPt, AnnotatedInst});
61 Value *Length = CI.getArgOperand(2);
63 if (dyn_cast<ConstantInt>(Length))
67 Candidates->emplace_back(CandidateInfo{Length, InsertPt, AnnotatedInst});
/freebsd-13-stable/sys/contrib/dev/acpica/components/disassembler/
H A Ddmresrcs.c167 * Length - Length of the descriptor in bytes
180 UINT32 Length,
186 AcpiGbl_IrqDecode [ACPI_GET_1BIT_FLAG (Length)]);
190 if (Length & 1)
214 * Length - Length of the descriptor in bytes
227 UINT32 Length,
253 * Length - Length o
177 AcpiDmIrqDescriptor( ACPI_OP_WALK_INFO *Info, AML_RESOURCE *Resource, UINT32 Length, UINT32 Level) argument
224 AcpiDmDmaDescriptor( ACPI_OP_WALK_INFO *Info, AML_RESOURCE *Resource, UINT32 Length, UINT32 Level) argument
263 AcpiDmFixedDmaDescriptor( ACPI_OP_WALK_INFO *Info, AML_RESOURCE *Resource, UINT32 Length, UINT32 Level) argument
309 AcpiDmIoDescriptor( ACPI_OP_WALK_INFO *Info, AML_RESOURCE *Resource, UINT32 Length, UINT32 Level) argument
356 AcpiDmFixedIoDescriptor( ACPI_OP_WALK_INFO *Info, AML_RESOURCE *Resource, UINT32 Length, UINT32 Level) argument
396 AcpiDmStartDependentDescriptor( ACPI_OP_WALK_INFO *Info, AML_RESOURCE *Resource, UINT32 Length, UINT32 Level) argument
437 AcpiDmEndDependentDescriptor( ACPI_OP_WALK_INFO *Info, AML_RESOURCE *Resource, UINT32 Length, UINT32 Level) argument
467 AcpiDmVendorSmallDescriptor( ACPI_OP_WALK_INFO *Info, AML_RESOURCE *Resource, UINT32 Length, UINT32 Level) argument
[all...]
/freebsd-13-stable/sys/dev/acpica/Osd/
H A DOsdMemory.c58 AcpiOsMapMemory(ACPI_PHYSICAL_ADDRESS PhysicalAddress, ACPI_SIZE Length) argument
60 return (pmap_mapbios((vm_offset_t)PhysicalAddress, Length));
64 AcpiOsUnmapMemory(void *LogicalAddress, ACPI_SIZE Length) argument
66 pmap_unmapbios((vm_offset_t)LogicalAddress, Length);
78 AcpiOsReadable (void *Pointer, ACPI_SIZE Length) argument
84 AcpiOsWritable (void *Pointer, ACPI_SIZE Length) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/
H A DFileWriter.cpp22 auto Length = encodeSLEB128(S, Bytes); local
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);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugSymbolsSubsection.cpp19 return Length;
32 Length += Symbol.length();
/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Dasloffset.c206 UINT32 Length; local
252 Length = Op->Asl.FinalAmlLength;
260 NamepathOffset = AslGbl_CurrentAmlOffset + Length +
263 DataOffset = AslGbl_CurrentAmlOffset + Length +
310 AslGbl_CurrentAmlOffset += Length;
317 Length = Op->Asl.FinalAmlLength;
325 NamepathOffset = AslGbl_CurrentAmlOffset + Length +
328 DataOffset = AslGbl_CurrentAmlOffset + Length +
352 AslGbl_CurrentAmlOffset += Length;
364 Length
[all...]

Completed in 118 milliseconds

1234567891011>>