HomeSort by: relevance | last modified time | path
    Searched defs:ByteWidth (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/hardware/
hwvalid.c 135 UINT32 ByteWidth;
155 ByteWidth = ACPI_DIV_8 (BitWidth);
156 LastAddress = Address + ByteWidth - 1;
161 ByteWidth));
169 ACPI_FORMAT_UINT64 (Address), ByteWidth));
201 ACPI_FORMAT_UINT64 (Address), ByteWidth, PortInfo->Name,
  /src/sys/external/bsd/acpica/dist/tools/acpiexec/
aeregion.c 92 UINT32 ByteWidth;
145 ByteWidth = (BitWidth / 8);
149 ByteWidth += 1;
540 ByteWidth = (BitWidth / 8);
543 ByteWidth += 1;
551 * ByteWidth (see above)
554 ((UINT64) Address + ByteWidth) >
561 memset (Value, 0, ByteWidth);
570 ByteWidth, (UINT32)(RegionElement->Address),
586 if (ByteWidth == 0
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 1714 Optional<size_t> ByteWidth = getLengthOnSingleLine(SM, EdgeRange);
1717 if (!ByteWidth)
1721 if (*ByteWidth <= MAX_PUNY_EDGE_LENGTH) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp 7125 unsigned ByteWidth = BitWidth / 8;
7126 assert(Index < ByteWidth && "invalid index requested");
7127 (void) ByteWidth;
7175 return calculateByteProvider(Op->getOperand(0), ByteWidth - Index - 1,
7470 unsigned ByteWidth = VT.getSizeInBits() / 8;
7493 SmallVector<int64_t, 8> ByteOffsets(ByteWidth);
7495 for (int i = ByteWidth - 1; i >= 0; --i) {
7503 if (++ZeroExtendedBytes != (ByteWidth - static_cast<unsigned>(i)))
7550 EVT::getIntegerVT(*DAG.getContext(), (ByteWidth - ZeroExtendedBytes) * 8);

Completed in 50 milliseconds