Home
last modified time | relevance | path

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

/freebsd/sys/contrib/dev/acpica/components/hardware/
H A Dhwvalid.c243 UINT32 ByteWidth; in AcpiHwValidateIoRequest() local
263 ByteWidth = ACPI_DIV_8 (BitWidth); in AcpiHwValidateIoRequest()
264 LastAddress = Address + ByteWidth - 1; in AcpiHwValidateIoRequest()
269 ByteWidth)); in AcpiHwValidateIoRequest()
277 ACPI_FORMAT_UINT64 (Address), ByteWidth)); in AcpiHwValidateIoRequest()
309 ACPI_FORMAT_UINT64 (Address), ByteWidth, PortInfo->Name, in AcpiHwValidateIoRequest()
/freebsd/sys/contrib/dev/acpica/components/tables/
H A Dtbfadt.c165 UINT8 ByteWidth,
321 UINT8 ByteWidth, in AcpiTbInitGenericAddress() argument
333 BitWidth = (UINT8) (ByteWidth * 8); in AcpiTbInitGenericAddress()
334 if (ByteWidth > 31) /* (31*8)=248, (32*8)=256 */ in AcpiTbInitGenericAddress()
346 RegisterName, ByteWidth, (ByteWidth * 8))); in AcpiTbInitGenericAddress()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DDataLayout.cpp325 constexpr unsigned ByteWidth = 8; in parseAlignment() local
326 if (Value % ByteWidth || !isPowerOf2_32(Value / ByteWidth)) in parseAlignment()
330 Alignment = Align(Value / ByteWidth); in parseAlignment()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp1752 std::optional<size_t> ByteWidth = getLengthOnSingleLine(SM, EdgeRange); in removePunyEdges() local
1755 if (!ByteWidth) in removePunyEdges()
1759 if (*ByteWidth <= MAX_PUNY_EDGE_LENGTH) { in removePunyEdges()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp87 static unsigned littleEndianByteAt(const unsigned ByteWidth, const unsigned I) { in littleEndianByteAt() argument
88 assert(I < ByteWidth && "I must be in [0, ByteWidth)"); in littleEndianByteAt()
106 static unsigned bigEndianByteAt(const unsigned ByteWidth, const unsigned I) { in bigEndianByteAt() argument
107 assert(I < ByteWidth && "I must be in [0, ByteWidth)"); in bigEndianByteAt()
108 return ByteWidth - I - 1; in bigEndianByteAt()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp4022 unsigned ByteWidth = BitWidth / 8; in collectBitParts() local
4024 for (unsigned ByteIdx = 0; ByteIdx < ByteWidth; ++ByteIdx) { in collectBitParts()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp9153 unsigned ByteWidth = BitWidth / 8; in calculateByteProvider() local
9154 assert(Index < ByteWidth && "invalid index requested"); in calculateByteProvider()
9155 (void) ByteWidth; in calculateByteProvider()
9211 return calculateByteProvider(Op->getOperand(0), ByteWidth - Index - 1, in calculateByteProvider()
9566 unsigned ByteWidth = VT.getSizeInBits() / 8; in MatchLoadCombine() local
9591 SmallVector<int64_t, 8> ByteOffsets(ByteWidth); in MatchLoadCombine()
9593 for (int i = ByteWidth - 1; i >= 0; --i) { in MatchLoadCombine()
9603 if (++ZeroExtendedBytes != (ByteWidth - static_cast<unsigned>(i))) in MatchLoadCombine()
9663 EVT::getIntegerVT(*DAG.getContext(), (ByteWidth - ZeroExtendedBytes) * 8); in MatchLoadCombine()