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

1234567891011>>

/freebsd-11-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 Dexfield.c190 UINT32 Length; local
197 Length = 0;
203 Length = 1;
209 Length = 2;
216 Length = AccessLength;
223 Length = ACPI_GSBUS_BUFFER_SIZE - 2;
227 return (Length);
254 ACPI_SIZE Length; local
304 Length = ACPI_SMBUS_BUFFER_SIZE;
311 Length
475 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)
372 * Length - Number of bytes to read
385 UINT32 Length,
396 for (i = 0; i < Length; i++)
446 UINT32 Length; local
469 * If the Region Address and Length have not been previously
491 Length = TableHeader->Length;
383 AcpiExRegionRead( ACPI_OPERAND_OBJECT *ObjDesc, UINT32 Length, UINT8 *Buffer) argument
[all...]
/freebsd-11-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-11-stable/sys/contrib/dev/acpica/common/
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
797 UINT32 Length = Table->Length; local
852 UINT32 Length = Table->Length; local
960 UINT32 Length = Table->Length; local
1078 UINT32 Length = Table->Length; local
1347 UINT32 Length = Table->Length; local
1400 UINT32 Length = Table->Length; local
1453 UINT32 Length = Table->Length; local
1538 UINT32 Length = Table->Length; local
1657 UINT32 Length = Table->Length; local
1815 UINT32 Length; local
2013 UINT32 Length; local
2442 UINT32 Length = Table->Length; local
2515 UINT32 Length = Table->Length; local
2986 UINT32 Length; local
3179 UINT32 Length = Table->Length; local
3278 UINT32 Length = Table->Length; local
3334 UINT32 Length = Table->Length; local
3537 UINT8 Length; local
3759 UINT32 Length = Table->Length; local
4129 UINT32 Length = Table->Length; local
4413 UINT32 Length = Table->Length; local
[all...]
/freebsd-11-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-11-stable/sys/contrib/edk2/Include/Library/
H A DBaseMemoryLib.h25 This function copies Length bytes from SourceBuffer to DestinationBuffer, and returns
29 If Length is greater than (MAX_ADDRESS - DestinationBuffer + 1), then ASSERT().
30 If Length is greater than (MAX_ADDRESS - SourceBuffer + 1), then ASSERT().
34 @param Length The number of bytes to copy from SourceBuffer to DestinationBuffer.
44 IN UINTN Length
50 This function fills Length bytes of Buffer with Value, and returns Buffer.
52 If Length is greater than (MAX_ADDRESS - Buffer + 1), then ASSERT().
55 @param Length The number of bytes to set.
56 @param Value The value with which to fill Length bytes of Buffer.
65 IN UINTN Length,
[all...]
/freebsd-11-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-11-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-11-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-11-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...]
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-11-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
H A DDWARFDebugArangeSet.h26 uint32_t Length; member in struct:llvm::DWARFDebugArangeSet::Header
42 uint64_t Length; member in struct:llvm::DWARFDebugArangeSet::Descriptor
44 uint64_t getEndAddress() const { return Address + Length; }
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/AST/
H A DExprOpenMP.h51 OMPArraySectionExpr(Expr *Base, Expr *LowerBound, Expr *Length, QualType Type, argument
58 (Length && Length->isTypeDependent()),
61 (Length && Length->isValueDependent()),
64 (Length && Length->isInstantiationDependent()),
67 (Length && Length->containsUnexpandedParameterPack())),
71 SubExprs[LENGTH] = Length;
[all...]
/freebsd-11-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-11-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()) {
47 return clang::tooling::Replacement(FilePath, Offset, Length,
53 unsigned int Length; member in struct:llvm::yaml::MappingTraits::NormalizedReplacement
62 Io.mapRequired("Length", Keys->Length);
/freebsd-11-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-11-stable/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringRef.h67 size_t Length = 0; member in class:llvm::StringRef
71 static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) { argument
72 if (Length == 0) { return 0; }
73 return ::memcmp(Lhs,Rhs,Length);
104 : Data(Str), Length(Str ? strLen(Str) : 0) {}
108 : Data(data), Length(length) {}
112 : Data(Str.data()), Length(Str.length()) {}
124 iterator end() const { return Data + Length; }
147 bool empty() const { return Length == 0; }
151 size_t size() const { return Length; }
[all...]
/freebsd-11-stable/contrib/groff/src/devices/xditview/
H A Dlex.c23 GetLine(DviWidget dw, char *Buffer, int Length) argument
27 Length--; /* Save room for final '\0' */
30 if (Buffer && i < Length)
43 GetWord(DviWidget dw, char *Buffer, int Length) argument
47 Length--; /* Save room for final '\0' */
51 if (Buffer && i < Length)
/freebsd-11-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-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugArangeSet.cpp52 HeaderData.Length = data.getU32(offset_ptr);
59 if (!data.isValidOffsetForDataOfSize(Offset, HeaderData.Length) ||
80 sizeof(arangeDescriptor.Length),
86 arangeDescriptor.Length = data.getUnsigned(offset_ptr, HeaderData.AddrSize);
90 if (arangeDescriptor.Address || arangeDescriptor.Length)
103 HeaderData.Length, HeaderData.Version)
/freebsd-11-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);

Completed in 157 milliseconds

1234567891011>>