Searched refs:OutOfRange (Results 1 - 4 of 4) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStdLibraryFunctionsChecker.cpp139 enum RangeKind { OutOfRange, WithinRange }; enumerator in enum:__anon2306::StdLibraryFunctionsChecker::RangeKind
166 case OutOfRange:
177 case OutOfRange:
181 Tmp.Kind = OutOfRange;
981 ReturnValueCondition(OutOfRange, SingleValue(0))})
988 0U, OutOfRange,
997 ReturnValueCondition(OutOfRange, SingleValue(0))})
1001 0U, OutOfRange,
1008 ReturnValueCondition(OutOfRange, SingleValue(0))})
1009 .Case({ArgumentCondition(0U, OutOfRange, Rang
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp140 bool OutOfRange(SMLoc IDLoc, long long Val, long long Max);
1280 // FIXME: Calls to OutOfRange shoudl propagate failure up to parseStatement.
1281 bool HexagonAsmParser::OutOfRange(SMLoc IDLoc, long long Val, long long Max) { function in class:HexagonAsmParser
1576 OutOfRange(IDLoc, s8, -128);
1602 OutOfRange(IDLoc, s8, -128);
1616 OutOfRange(IDLoc, s8, -128);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineCalls.cpp576 auto OutOfRange = [&](int Idx) { return (Idx < 0) || (BitWidth <= Idx); }; local
577 if (llvm::all_of(ShiftAmts, OutOfRange)) {
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp7684 bool OutOfRange = false; local
7685 auto MatchOutOfRange = [Bitsize, &OutOfRange](ConstantSDNode *C) {
7686 OutOfRange |= C->getAPIntValue().uge(Bitsize);
7689 if (ISD::matchUnaryPredicate(N1, MatchOutOfRange) && OutOfRange) {

Completed in 186 milliseconds