Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp1722 std::optional<size_t> ByteWidth = getLengthOnSingleLine(SM, EdgeRange); in removePunyEdges() local
1725 if (!ByteWidth) in removePunyEdges()
1729 if (*ByteWidth <= MAX_PUNY_EDGE_LENGTH) { in removePunyEdges()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/
H A DCombinerHelper.cpp70 static unsigned littleEndianByteAt(const unsigned ByteWidth, const unsigned I) { in littleEndianByteAt() argument
71 assert(I < ByteWidth && "I must be in [0, ByteWidth)"); in littleEndianByteAt()
89 static unsigned bigEndianByteAt(const unsigned ByteWidth, const unsigned I) { in bigEndianByteAt() argument
90 assert(I < ByteWidth && "I must be in [0, ByteWidth)"); in bigEndianByteAt()
91 return ByteWidth - I - 1; in bigEndianByteAt()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DLocal.cpp3196 unsigned ByteWidth = BitWidth / 8; in collectBitParts() local
3198 for (unsigned ByteIdx = 0; ByteIdx < ByteWidth; ++ByteIdx) { in collectBitParts()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp8001 unsigned ByteWidth = BitWidth / 8; in calculateByteProvider() local
8002 assert(Index < ByteWidth && "invalid index requested"); in calculateByteProvider()
8003 (void) ByteWidth; in calculateByteProvider()
8058 return calculateByteProvider(Op->getOperand(0), ByteWidth - Index - 1, in calculateByteProvider()
8397 unsigned ByteWidth = VT.getSizeInBits() / 8; in MatchLoadCombine() local
8421 SmallVector<int64_t, 8> ByteOffsets(ByteWidth); in MatchLoadCombine()
8423 for (int i = ByteWidth - 1; i >= 0; --i) { in MatchLoadCombine()
8433 if (++ZeroExtendedBytes != (ByteWidth - static_cast<unsigned>(i))) in MatchLoadCombine()
8494 EVT::getIntegerVT(*DAG.getContext(), (ByteWidth - ZeroExtendedBytes) * 8); in MatchLoadCombine()