| /src/sys/external/bsd/acpica/dist/executer/ |
| exstorob.c | 71 UINT32 Length; 88 Length = SourceDesc->Buffer.Length; 91 * If target is a buffer of length zero or is a static buffer, 92 * allocate a new buffer of the proper length 94 if ((TargetDesc->Buffer.Length == 0) || 97 TargetDesc->Buffer.Pointer = ACPI_ALLOCATE (Length); 103 TargetDesc->Buffer.Length = Length; 108 if (Length <= TargetDesc->Buffer.Length [all...] |
| exoparg3.c | 176 ACPI_SIZE Length; 185 case AML_MID_OP: /* Mid (Source[0], Index[1], Length[2], Result[3]) */ 201 Length = (ACPI_SIZE) Operand[2]->Integer.Value; 204 * If the index is beyond the length of the String/Buffer, or if the 205 * requested length is zero, return a zero-length String/Buffer 207 if (Index >= Operand[0]->String.Length) 209 Length = 0; 214 else if ((Index + Length) > Operand[0]->String.Length || [all...] |
| exconfig.c | 67 UINT32 Length, 163 if ((Operand[1]->String.Length > ACPI_OEM_ID_SIZE) || 164 (Operand[2]->String.Length > ACPI_OEM_TABLE_ID_SIZE)) 174 memcpy (OemId, Operand[1]->String.Pointer, Operand[1]->String.Length); 175 OemId[Operand[1]->String.Length] = 0; 176 memcpy (OemTableId, Operand[2]->String.Pointer, Operand[2]->String.Length); 177 OemTableId[Operand[2]->String.Length] = 0; 206 if (Operand[3]->String.Length > 0) 223 if (Operand[4]->String.Length > 0) 302 * Length - Number of bytes to rea [all...] |
| /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/ |
| ARMWinEHPrinter.h | 32 uint8_t Length; 39 unsigned Length, bool Prologue); 41 unsigned Length, bool Prologue); 43 unsigned Length, bool Prologue); 45 unsigned Length, bool Prologue); 47 unsigned Length, bool Prologue); 49 unsigned Length, bool Prologue); 51 unsigned Length, bool Prologue); 53 unsigned Length, bool Prologue); 55 unsigned Length, bool Prologue) [all...] |
| /src/sys/external/bsd/acpica/dist/common/ |
| dmtbdump1.c | 88 ACPI_SIZE Length; 97 while (Offset < Table->Length) 103 Status = AcpiDmDumpTable (Table->Length, Offset, NodeHeader, 104 NodeHeader->Length, AcpiDmTableInfoAestHdr); 118 Length = sizeof (ACPI_AEST_PROCESSOR); 123 Length = sizeof (ACPI_AEST_MEMORY); 128 Length = sizeof (ACPI_AEST_SMMU); 136 Length = sizeof (ACPI_AEST_VENDOR); 141 Length = sizeof (ACPI_AEST_VENDOR_V2); 152 Length = sizeof (ACPI_AEST_GIC) [all...] |
| dmtbdump3.c | 72 (void) AcpiDmDumpTable (Table->Length, sizeof (ACPI_TABLE_HEADER), 74 Table->Length - sizeof (*Table), AcpiDmTableInfoSlic); 104 Status = AcpiDmDumpTable (Table->Length, 0, Table, 0, AcpiDmTableInfoSlit); 125 if (Offset >= Table->Length) 181 Status = AcpiDmDumpTable (Table->Length, 0, Table, 0, AcpiDmTableInfoSrat); 190 while (Offset < Table->Length) 195 Status = AcpiDmDumpTable (Table->Length, Offset, Subtable, 196 Subtable->Length, AcpiDmTableInfoSratHdr); 250 if (!Subtable->Length) 252 AcpiOsPrintf ("Invalid zero length subtable\n") [all...] |
| dmtbdump2.c | 81 UINT32 Length; 91 Status = AcpiDmDumpTable (Table->Length, 0, Table, 0, AcpiDmTableInfoIort); 115 Status = AcpiDmDumpTable (Table->Length, Offset, Table, 124 while (Offset < Table->Length) 130 Length = ACPI_OFFSET (ACPI_IORT_NODE, NodeData); 134 Status = AcpiDmDumpTable (Table->Length, Offset, 135 IortNode, Length, AcpiDmTableInfoIortHdr); 139 Status = AcpiDmDumpTable (Table->Length, Offset, 140 IortNode, Length, AcpiDmTableInfoIortHdr3); 148 NodeOffset = Length; [all...] |
| dmtbdump.c | 60 UINT32 Length); 69 * Length - Length of the buffer 76 * DESCRIPTION: Format the contents of an arbitrary length data buffer (in the 85 UINT32 Length, 95 if (!Length) 103 while (i < Length) 105 if ((Length > 16) && (i != 0)) 107 if ((Length - i) < 16) 108 AcpiOsPrintf ("\n/* %3.3Xh %4.4u %3u */ ", AbsoluteOffset, AbsoluteOffset, Length - i) [all...] |
| /src/sys/external/bsd/acpica/dist/utilities/ |
| utcksum.c | 61 * Length - Length of entire table 76 UINT32 Length) 93 Length = Table->Length; 94 Checksum = AcpiUtGenerateChecksum (ACPI_CAST_PTR (UINT8, Table), Length, Table->Checksum); 120 * Length - Length of entire table 132 UINT32 Length) 140 CdatTable->Length, CdatTable->Checksum) [all...] |
| utids.c | 78 UINT32 Length; 96 Length = ACPI_EISAID_STRING_SIZE; 100 Length = ObjDesc->String.Length + 1; 106 sizeof (ACPI_PNP_DEVICE_ID) + (ACPI_SIZE) Length); 128 Hid->Length = Length; 166 UINT32 Length; 184 Length = ACPI_MAX64_DECIMAL_DIGITS + 1; 188 Length = ObjDesc->String.Length + 1 [all...] |
| utprint.c | 98 * RETURN: Length of the string. Less than or equal to Count. 100 * DESCRIPTION: Calculate the length of a string with boundary. 109 UINT32 Length = 0; 114 Length++; 119 return (Length); 452 INT32 Length; 594 Length = (INT32) AcpiUtBoundStringLength (s, Precision); 597 while (Length < Width--) 603 for (i = 0; i < Length; ++i) 609 while (Length < Width-- [all...] |
| /src/sys/dev/acpi/acpica/ |
| OsdMemory.c | 62 AcpiOsMapMemory(ACPI_PHYSICAL_ADDRESS PhysicalAddress, ACPI_SIZE Length) 70 Status = acpi_md_OsMapMemory(PhysicalAddress, Length, &LogicalAddress); 84 AcpiOsUnmapMemory(void *LogicalAddress, ACPI_SIZE Length) 87 acpi_md_OsUnmapMemory(LogicalAddress, Length); 134 AcpiOsReadable(void *Pointer, ACPI_SIZE Length) 137 return acpi_md_OsReadable(Pointer, Length); 146 AcpiOsWritable(void *Pointer, ACPI_SIZE Length) 149 return acpi_md_OsWritable(Pointer, Length);
|
| /src/sys/external/bsd/acpica/dist/include/platform/ |
| acdragonflyex.h | 70 ACPI_SIZE Length, 77 ACPI_SIZE Length,
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/PBQP/ |
| Math.h | 30 explicit Vector(unsigned Length) 31 : Length(Length), Data(std::make_unique<PBQPNum []>(Length)) {} 34 Vector(unsigned Length, PBQPNum InitVal) 35 : Length(Length), Data(std::make_unique<PBQPNum []>(Length)) { 36 std::fill(Data.get(), Data.get() + Length, InitVal); 41 : Length(V.Length), Data(std::make_unique<PBQPNum []>(Length)) [all...] |
| /src/sys/external/bsd/acpica/dist/tools/acpiexec/ |
| aeregion.c | 84 UINT32 Length; 125 * Find the region's address space and length before searching 129 Length = RegionObject->Region.Length; 135 (UINT32) Address, BitWidth, (UINT32) Length)); 159 * Note: ReadPort currently always returns all ones, length=BitLength 223 Status = AcpiExGetProtocolBufferLength ((Function >> 16), &Length); 234 (Length > ACPI_SMBUS_DATA_SIZE)) 236 Length = ACPI_SMBUS_DATA_SIZE; /* SMBus buffer is fixed-length */ [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| BinaryStreamRef.h | 30 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; 59 /// this BinaryStreamRef is length-tracking, then the resulting one will b [all...] |
| /src/sys/external/bsd/acpica/dist/tables/ |
| tbprint.c | 59 ACPI_SIZE Length); 72 * Length - Maximum length 84 ACPI_SIZE Length) 87 while (Length && *String) 95 Length--; 156 /* FACS only has signature and length fields */ 160 Header->Length)); 174 ACPI_CAST_PTR (ACPI_TABLE_RSDP, Header)->Length : 20, 184 ACPI_CAST_PTR (ACPI_TABLE_CDAT, Header)->Length)); [all...] |
| tbfadt.c | 84 UINT16 Length; 230 * for GPEs, the legacy length (ByteWidth) is used instead to 342 UINT32 Length; 361 Length = FadtDesc->Length; 367 (void) AcpiUtVerifyChecksum (Table, Length); 371 AcpiTbCreateLocalFadt (Table, Length); 411 * Length - Length of the table 425 UINT32 Length) [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/DWARF/ |
| DWARFDebugAranges.h | 37 : 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).
|
| /src/sys/external/bsd/acpica/dist/os_specific/service_layers/ |
| osbsdtbl.c | 167 LocalTable = calloc (1, MappedTable->Length); 170 AcpiOsUnmapMemory (MappedTable, MappedTable->Length); 174 memcpy (LocalTable, MappedTable, MappedTable->Length); 175 AcpiOsUnmapMemory (MappedTable, MappedTable->Length); 390 size_t Length = sizeof (Address); 416 if (sysctlbyname (SYSTEM_SYSCTL, &Address, &Length, NULL, 0) != 0) 465 Gbl_Xsdt = calloc (1, MappedTable->Length); 469 "XSDT: Could not allocate buffer for table of length %X\n", 470 MappedTable->Length); 471 AcpiOsUnmapMemory (MappedTable, MappedTable->Length); [all...] |
| /src/external/apache2/llvm/dist/clang/include/clang/Tooling/ |
| ReplacementsYaml.h | 34 : 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; 56 Io.mapRequired("Length", Keys->Length);
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| LineIterator.cpp | 91 size_t Length = 0; 92 while (Pos[Length] != '\0' && !isAtLineEnd(&Pos[Length])) { 93 ++Length; 96 CurrentLine = StringRef(Pos, Length);
|
| /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/ |
| StringRef.h | 51 /// array and a length, which need not be null terminated. 69 /// The length of the string. 70 size_t Length = 0; 74 static int compareMemory(const char *Lhs, const char *Rhs, size_t Length) { 75 if (Length == 0) { return 0; } 76 return ::memcmp(Lhs,Rhs,Length); 82 return std::char_traits<char>::length(Str); 107 : Data(Str), Length(Str ? strLen(Str) : 0) {} 109 /// Construct a string ref from a pointer and length. 110 /*implicit*/ constexpr StringRef(const char *data, size_t length) [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/ |
| ValueProfilePlugins.inc | 43 Value *Length = MI.getLength(); 44 // Not instrument constant length calls. 45 if (isa<ConstantInt>(Length)) 50 Candidates->emplace_back(CandidateInfo{Length, InsertPt, AnnotatedInst}); 61 Value *Length = CI.getArgOperand(2); 62 // Not instrument constant length calls. 63 if (isa<ConstantInt>(Length)) 67 Candidates->emplace_back(CandidateInfo{Length, InsertPt, AnnotatedInst});
|
| /src/sys/external/bsd/acpica/dist/disassembler/ |
| dmresrcs.c | 59 * Length - Length of the descriptor in bytes 72 UINT32 Length, 78 AcpiGbl_IrqDecode [ACPI_GET_1BIT_FLAG (Length)]); 82 if (Length & 1) 106 * Length - Length of the descriptor in bytes 119 UINT32 Length, 145 * Length - Length of the descriptor in byte [all...] |