Home
last modified time | relevance | path

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

/freebsd-12.1/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-12.1/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-12.1/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp1640 Optional<size_t> ByteWidth = getLengthOnSingleLine(SM, EdgeRange); in removePunyEdges() local
1643 if (!ByteWidth) in removePunyEdges()
1647 if (*ByteWidth <= MAX_PUNY_EDGE_LENGTH) { in removePunyEdges()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp5799 unsigned ByteWidth = BitWidth / 8; in calculateByteProvider() local
5800 assert(Index < ByteWidth && "invalid index requested"); in calculateByteProvider()
5801 (void) ByteWidth; in calculateByteProvider()
5849 return calculateByteProvider(Op->getOperand(0), ByteWidth - Index - 1, in calculateByteProvider()
5910 unsigned ByteWidth = VT.getSizeInBits() / 8; in MatchLoadCombine() local
5945 SmallVector<int64_t, 4> ByteOffsets(ByteWidth); in MatchLoadCombine()
5946 for (unsigned i = 0; i < ByteWidth; i++) { in MatchLoadCombine()
5991 for (unsigned i = 0; i < ByteWidth; i++) { in MatchLoadCombine()
5993 LittleEndian &= CurrentByteOffset == LittleEndianByteAt(ByteWidth, i); in MatchLoadCombine()
5994 BigEndian &= CurrentByteOffset == BigEndianByteAt(ByteWidth, i); in MatchLoadCombine()