Searched refs:Length (Results 101 - 125 of 535) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DRegisterBankInfo.h43 /// The StartIdx and Length represent what region of the orginal
46 /// at StartIdx bit and spanning Length bits.
54 /// Length of this mapping in bits. This is how many bits this
56 /// from StartIdx to StartIdx + Length -1.
57 unsigned Length; member in struct:llvm::RegisterBankInfo::PartialMapping
65 PartialMapping(unsigned StartIdx, unsigned Length, argument
67 : StartIdx(StartIdx), Length(Length), RegBank(&RegBank) {}
71 unsigned getHighBitIdx() const { return StartIdx + Length - 1; }
462 const PartialMapping &getPartialMapping(unsigned StartIdx, unsigned Length,
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/scudo/standalone/
H A Dlinux.cpp151 bool getRandom(void *Buffer, uptr Length, UNUSED bool Blocking) { argument
152 if (!Buffer || !Length || Length > MaxRandomLength)
161 syscall(SYS_getrandom, Buffer, Length, Blocking ? 0 : GRND_NONBLOCK);
162 if (ReadBytes == static_cast<ssize_t>(Length))
170 ReadBytes = read(FileDesc, Buffer, Length);
172 return (ReadBytes == static_cast<ssize_t>(Length));
/freebsd-13-stable/tools/tools/dmardump/
H A Ddmardump.c212 if (remaining < hdr->Length)
220 return (hdr->Length);
231 remaining = sdp->Length - sizeof(ACPI_TABLE_DMAR);
233 cp = (char *)sdp + sdp->Length - remaining;
248 sp = acpi_map_physical(pa, sp->Length);
267 entries = (rsdp->Length - sizeof(ACPI_TABLE_HEADER)) / addr_size;
276 if (acpi_checksum(sdp, sdp->Length)) {
/freebsd-13-stable/sys/contrib/dev/acpica/common/
H A Dacfileio.c257 "Input file %s, Length 0x%X (%u) bytes\n",
430 Table = AcpiOsAllocate ((ACPI_SIZE) TableHeader.Length);
440 Count = fread (Table, 1, TableHeader.Length, File);
446 if (GetOnlyAmlTables && Count != (INT32) TableHeader.Length)
454 Status = AcpiTbVerifyChecksum (Table, TableHeader.Length);
575 if (TableHeader.Length > (UINT32) (FileSize - TableOffset))
579 TableHeader.Signature, TableHeader.Length,
649 for (i = 1; i < Table->Length; i++)
H A Ddmtables.c267 AcpiOsPrintf (" * Length 0x%8.8X (%u)\n", Table->Length, Table->Length);
299 Checksum = AcpiTbChecksum (ACPI_CAST_PTR (UINT8, Table), Table->Length);
375 AcpiOsPrintf ("Table Body (Length 0x%X)\n", Table->Length);
377 Table->Length, DB_BYTE_DISPLAY, ACPI_UINT32_MAX);
453 AdWriteTable (NewTable, NewTable->Length,
507 AmlLength = Table->Length - sizeof (ACPI_TABLE_HEADER);
/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Daslanalyze.c245 ACPI_SIZE Length; local
257 Length = strlen (Op->Asl.Value.String);
258 if (!Length)
304 if ((Length < 7) || (Length > 8))
311 /* _HID Length is valid (7 or 8), now check prefix (first 3 or 4 chars) */
313 if (Length == 7)
327 else /* Length == 8 */
347 for (; i < Length; i++)
H A Daslxrefout.c212 UINT32 Length; local
215 Length = strlen (Message);
218 while (Length)
221 Length--;
344 UINT32 Length; local
405 Length = 1;
409 Length = 8;
413 Length = 16;
417 Length = 32;
421 Length
[all...]
H A Ddttable.c210 RsdpExtension->Length = AslGbl_RootTable->Length + Subtable->Length;
H A Daslcodegen.c303 * Length - Size of data in buffer
315 UINT32 Length)
320 FlWriteFile (ASL_FILE_AML_OUTPUT, Buffer, Length);
326 Op->Asl.FinalAmlLength += Length;
601 AslGbl_TableHeader.Length = sizeof (ACPI_TABLE_HEADER) +
615 AslGbl_TableHeader.Length += strrchr (AslGbl_ParseTreeRoot->Asl.Filename, '.')
621 CvDbgPrint (" Length: %u\n",
630 CvDbgPrint ("Length of standard comment): %d\n", CommentLength);
632 AslGbl_TableHeader.Length += CommentLength;
635 CvDbgPrint (" Length
312 CgLocalWriteAmlData( ACPI_PARSE_OBJECT *Op, void *Buffer, UINT32 Length) argument
678 UINT32 Length; local
[all...]
H A Dcvparser.c206 UINT64 Length = strlen(Filename); local
207 char *FileExt = Filename + Length - 4;
211 if ((Length > 4) && AcpiUtStricmp (FileExt, ".dsl"))
216 for(i = 0; i<Length; ++i)
263 AmlLength = Table->Length - sizeof (ACPI_TABLE_HEADER);
273 AcpiGbl_FileTreeRoot->FileEnd = (char *)(AmlStart + Table->Length);
720 UINT32 Length = 0; local
927 Length = 0;
928 while (ParserState->Aml[Length])
930 Length
[all...]
/freebsd-13-stable/sys/contrib/dev/acpica/components/executer/
H A Dexconcat.c372 ((ACPI_SIZE) LocalOperand0->String.Length +
373 LocalOperand1->String.Length));
393 ((ACPI_SIZE) Operand0->Buffer.Length +
394 LocalOperand1->Buffer.Length));
406 Operand0->Buffer.Length);
407 memcpy (Buffer + Operand0->Buffer.Length,
409 LocalOperand1->Buffer.Length);
H A Dexdebug.c213 if ((SourceDesc->String.Length == 1) &&
310 AcpiOsPrintf ("[0x%.2X]\n", (UINT32) SourceDesc->Buffer.Length);
312 (SourceDesc->Buffer.Length < 256) ?
313 SourceDesc->Buffer.Length : 256, DB_BYTE_DISPLAY, 0);
/freebsd-13-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutresrc.c275 * AmlLength - Length of the entire template
298 UINT32 Length; local
321 /* Validate the Resource Type and Resource Length */
335 Length = AcpiUtGetDescriptorLength (Aml);
342 Aml, Length, Offset, ResourceIndex, Context);
381 Aml += Length;
382 Offset += Length;
415 * Type and Resource Length. Returns an index into the global
572 "0x%2.2X, Length 0x%4.4X, MinLength 0x%4.4X",
625 * RETURN: Byte Length
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugFrame.h135 FrameEntry(FrameKind K, bool IsDWARF64, uint64_t Offset, uint64_t Length, argument
137 : Kind(K), IsDWARF64(IsDWARF64), Offset(Offset), Length(Length),
144 uint64_t getLength() const { return Length; }
161 const uint64_t Length; member in class:llvm::dwarf::FrameEntry
171 CIE(bool IsDWARF64, uint64_t Offset, uint64_t Length, uint8_t Version, argument
178 : FrameEntry(FK_CIE, IsDWARF64, Offset, Length, CodeAlignmentFactor,
228 FDE(bool IsDWARF64, uint64_t Offset, uint64_t Length, uint64_t CIEPointer, argument
231 : FrameEntry(FK_FDE, IsDWARF64, Offset, Length,
H A DDWARFDebugPubTable.h46 uint64_t Length; member in struct:llvm::DWARFDebugPubTable::Set
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/
H A DIPDBSession.h56 findLineNumbersByAddress(uint64_t Address, uint32_t Length) const = 0;
58 findLineNumbersByRVA(uint32_t RVA, uint32_t Length) const = 0;
61 uint32_t Length) const = 0;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugPubTable.cpp34 std::tie(NewSet.Length, NewSet.Format) = Data.getInitialLength(C);
46 Offset = C.tell() + NewSet.Length;
96 OS << "length = " << format("0x%0*" PRIx64, OffsetDumpWidth, S.Length);
/freebsd-13-stable/sys/contrib/dev/acpica/components/tables/
H A Dtbxfroot.c185 /* "Length" field is available if table version >= 2 */
189 return (Rsdp->Length);
381 * Length - Maximum length to search
392 UINT32 Length)
402 EndAddress = StartAddress + Length;
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingFile.c276 size_t Length = strlen(Filename); local
278 char *Copy = (char *)COMPILER_RT_ALLOCA(Length + 1);
279 strncpy(Copy, Filename, Length + 1);
387 int Length; local
389 Length = getCurFilenameLength();
390 FilenameBuf = (char *)COMPILER_RT_ALLOCA(Length + 1);
492 int Length = getCurFilenameLength(); local
493 char *FilenameBuf = (char *)COMPILER_RT_ALLOCA(Length + 1);
576 int Length = getCurFilenameLength();
577 char *FilenameBuf = (char *)COMPILER_RT_ALLOCA(Length
907 int Length; local
938 int Length; local
1013 int rc, Length; local
1074 int rc, Length, LengthBeforeAppend, SuffixLength; local
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DDebugSymbolsSubsection.h49 uint32_t Length = 0; member in class:llvm::codeview::final
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DNativeTypeBuiltin.h43 uint64_t Length; member in class:llvm::pdb::NativeTypeBuiltin
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DDependencyDirectivesSourceMinimizer.h77 int Length; member in struct:clang::minimize_source_to_dependency_directives::SkippedRange
/freebsd-13-stable/sys/dev/acpica/
H A Dacpi_package.c100 length = obj->String.Length;
104 length = obj->Buffer.Length;
127 obj->Buffer.Length < sizeof(ACPI_GENERIC_ADDRESS) + 3)
144 obj->Buffer.Length < sizeof(ACPI_GENERIC_ADDRESS) + 3)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBContext.cpp38 uint32_t Length = 1; local
42 Length = Func->getLength();
44 Length = Data->getLength();
49 auto LineNumbers = Session->findLineNumbersByAddress(Address.Address, Length);
/freebsd-13-stable/sys/contrib/dev/acpica/components/namespace/
H A Dnsparse.c213 if (Table->Length < sizeof (ACPI_TABLE_HEADER))
219 AmlLength = Table->Length - sizeof (ACPI_TABLE_HEADER);
327 if (Table->Length < sizeof (ACPI_TABLE_HEADER))
333 AmlLength = Table->Length - sizeof (ACPI_TABLE_HEADER);

Completed in 128 milliseconds

1234567891011>>