Home
last modified time | relevance | path

Searched refs:ByteWidth (Results 1 – 7 of 7) sorted by relevance

/netbsd/sys/external/bsd/acpica/dist/hardware/
H A Dhwvalid.c135 UINT32 ByteWidth; in AcpiHwValidateIoRequest() local
155 ByteWidth = ACPI_DIV_8 (BitWidth); in AcpiHwValidateIoRequest()
156 LastAddress = Address + ByteWidth - 1; in AcpiHwValidateIoRequest()
161 ByteWidth)); in AcpiHwValidateIoRequest()
169 ACPI_FORMAT_UINT64 (Address), ByteWidth)); in AcpiHwValidateIoRequest()
201 ACPI_FORMAT_UINT64 (Address), ByteWidth, PortInfo->Name, in AcpiHwValidateIoRequest()
/netbsd/sys/external/bsd/acpica/dist/tools/acpiexec/
H A Daeregion.c92 UINT32 ByteWidth; in AeRegionHandler() local
145 ByteWidth = (BitWidth / 8); in AeRegionHandler()
149 ByteWidth += 1; in AeRegionHandler()
540 ByteWidth = (BitWidth / 8); in AeRegionHandler()
543 ByteWidth += 1; in AeRegionHandler()
554 ((UINT64) Address + ByteWidth) > in AeRegionHandler()
561 ByteWidth, (UINT32)(RegionElement->Address), in AeRegionHandler()
583 memcpy (Value, BufferValue, ByteWidth); in AeRegionHandler()
590 memcpy (BufferValue, Value, ByteWidth); in AeRegionHandler()
/netbsd/sys/external/bsd/acpica/dist/tables/
H A Dtbfadt.c57 UINT8 ByteWidth,
213 UINT8 ByteWidth, in AcpiTbInitGenericAddress() argument
225 BitWidth = (UINT8) (ByteWidth * 8); in AcpiTbInitGenericAddress()
226 if (ByteWidth > 31) /* (31*8)=248, (32*8)=256 */ in AcpiTbInitGenericAddress()
238 RegisterName, ByteWidth, (ByteWidth * 8))); in AcpiTbInitGenericAddress()
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp60 static unsigned littleEndianByteAt(const unsigned ByteWidth, const unsigned I) { in littleEndianByteAt() argument
61 assert(I < ByteWidth && "I must be in [0, ByteWidth)"); in littleEndianByteAt()
69 static unsigned bigEndianByteAt(const unsigned ByteWidth, const unsigned I) { in bigEndianByteAt() argument
70 assert(I < ByteWidth && "I must be in [0, ByteWidth)"); in bigEndianByteAt()
71 return ByteWidth - I - 1; in bigEndianByteAt()
/netbsd/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp1714 Optional<size_t> ByteWidth = getLengthOnSingleLine(SM, EdgeRange); in removePunyEdges() local
1717 if (!ByteWidth) in removePunyEdges()
1721 if (*ByteWidth <= MAX_PUNY_EDGE_LENGTH) { in removePunyEdges()
/netbsd/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DLocal.cpp3040 unsigned ByteWidth = BitWidth / 8; in collectBitParts() local
3042 for (unsigned ByteIdx = 0; ByteIdx < ByteWidth; ++ByteIdx) { in collectBitParts()
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp7125 unsigned ByteWidth = BitWidth / 8; in calculateByteProvider() local
7126 assert(Index < ByteWidth && "invalid index requested"); in calculateByteProvider()
7127 (void) ByteWidth; in calculateByteProvider()
7175 return calculateByteProvider(Op->getOperand(0), ByteWidth - Index - 1, in calculateByteProvider()
7470 unsigned ByteWidth = VT.getSizeInBits() / 8; in MatchLoadCombine() local
7493 SmallVector<int64_t, 8> ByteOffsets(ByteWidth); in MatchLoadCombine()
7495 for (int i = ByteWidth - 1; i >= 0; --i) { in MatchLoadCombine()
7503 if (++ZeroExtendedBytes != (ByteWidth - static_cast<unsigned>(i))) in MatchLoadCombine()
7550 EVT::getIntegerVT(*DAG.getContext(), (ByteWidth - ZeroExtendedBytes) * 8); in MatchLoadCombine()