/third_party/ltp/tools/sparse/sparse-src/validation/optim/ |
H A D | ext-trunc-greater.c | 6 short ugt(unsigned char x) in ugt() function
|
H A D | binops-same-args.c | 21 u32 ugt(u32 a) { return a > a; } in ugt() function
|
/third_party/ltp/tools/sparse/sparse-src/validation/ |
H A D | tautological-compare.c | 13 u32 ugt(u32 a) { return a > a; } in ugt() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | ConstantRange.cpp | 313 return Lower.ugt(Upper) && !Upper.isNullValue(); in isWrappedSet() 317 return Lower.ugt(Upper); in isUpperWrapped() 344 return APInt::getMaxValue(getBitWidth()).ugt(MaxSize - 1); in isSizeLargerThan() 346 return (Upper - Lower).ugt(MaxSize); in isSizeLargerThan() 575 APInt U = (CR.Upper - 1).ugt(Upper - 1) ? CR.Upper : Upper; in unionWith() 621 APInt U = CR.Upper.ugt(Upper) ? CR.Upper : Upper; in unionWith() 1179 if (MinLHS.ugt(-MinAbsRHS)) 1227 if (Other_umax.ugt(max.countLeadingZeros())) 1439 if (Min.ugt(~OtherMin)) 1441 if (Max.ugt(~OtherMa [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | APInt.h | 1059 bool ule(uint64_t RHS) const { return !ugt(RHS); } 1083 bool ugt(const APInt &RHS) const { return !ult(RHS) && !eq(RHS); } 1091 bool ugt(uint64_t RHS) const { 1799 return A.ugt(B) ? A : B;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | APInt.h | 487 return ugt(Limit) ? Limit : getZExtValue(); in getLimitedValue() 1251 bool ule(uint64_t RHS) const { return !ugt(RHS); } 1275 bool ugt(const APInt &RHS) const { return !ule(RHS); } 1283 bool ugt(uint64_t RHS) const { 2178 return A.ugt(B) ? A : B;
|
H A D | APSInt.h | 158 return IsUnsigned ? ugt(RHS) : sgt(RHS); in operator >()
|
/third_party/node/deps/v8/src/codegen/loong64/ |
H A D | constants-loong64.h | 584 ugt = Ugreater, 602 case ugt: 615 return ugt;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | TypePromotion.cpp | 318 // would also be true for ult, uge and ugt: in isSafeWrap() 374 if (Total.ugt(Max.zext(Total.getBitWidth()))) in isSafeWrap() 377 if (Total.zext(Max.getBitWidth()).ugt(Max)) in isSafeWrap() 379 } else if (Total.ugt(Max)) in isSafeWrap()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
H A D | FunctionComparator.cpp | 69 if (L.ugt(R)) return 1; in cmpAPInts() 70 if (R.ugt(L)) return -1; in cmpAPInts()
|
/third_party/node/deps/v8/src/codegen/mips64/ |
H A D | constants-mips64.h | 1104 ugt = Ugreater, 1122 case ugt: 1135 return ugt;
|
/third_party/node/deps/v8/src/codegen/mips/ |
H A D | constants-mips.h | 1055 ugt = Ugreater, 1073 case ugt: 1086 return ugt;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineAndOrXor.cpp | 751 /// (icmp slt x, 0) | (icmp sgt x, n) --> icmp ugt x, n 826 if (C1->ugt(*C2)) in foldAndOrOfEqualityCmpsWithConstants() 940 Pred == ICmpInst::ICMP_ULT && I1->ugt(*I01) && I01->shl(1) == *I1)) in foldSignedTruncationCheck() 1264 // We can't fold (ugt x, C) & (sgt x, C2). in foldAndOfICmps() 1274 ShouldSwap = LHSC->getValue().ugt(RHSC->getValue()); in foldAndOfICmps() 2224 LAddC->getValue().ugt(LHSC->getValue()) && in foldOrOfICmps() 2225 RAddC->getValue().ugt(LHSC->getValue())) { in foldOrOfICmps() 2245 RangeDiff.ugt(LHSC->getValue())) { in foldOrOfICmps() 2278 // (icmp eq B, 0) | (icmp ugt B, A) -> (icmp ule A, B-1) in foldOrOfICmps() 2288 // (icmp ugt in foldOrOfICmps() [all...] |
H A D | InstCombineShifts.cpp | 453 if (InnerShiftConst->ugt(OuterShAmt) && InnerShiftConst->ult(TypeWidth)) { in canEvaluateShiftedShift() 1095 if (ShOp1->ugt(ShAmt)) { in visitLShr()
|
H A D | InstCombineCompares.cpp | 1249 /// I = icmp ugt (add (add A, B), CI2), CI1 1448 ConstantInt *CI, *CI2; // I = icmp ugt (add (add A, B), CI2), CI in foldICmpWithConstant() 2093 assert(C.ugt(0) && "ult 0 should have been eliminated"); in foldICmpShlConstant() 2214 // icmp ugt (lshr exact X, ShAmtC), C --> icmp ugt X, (C << ShAmtC) in foldICmpShrConstant() 2220 // icmp ugt (lshr X, ShAmtC), C --> icmp ugt X, ((C + 1) << ShAmtC) - 1 in foldICmpShrConstant() 2304 // (icmp ugt (udiv C2, Y), C) -> (icmp ule Y, C2/(C+1)) in foldICmpUDivConstant() 2308 "icmp ugt X, UINT_MAX should have been simplified already."); in foldICmpUDivConstant() 2313 // (icmp ult (udiv C2, Y), C) -> (icmp ugt in foldICmpUDivConstant() [all...] |
/third_party/node/deps/v8/src/codegen/riscv64/ |
H A D | constants-riscv64.h | 1145 ugt = Ugreater, 1162 case ugt: 1175 return ugt;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
H A D | APInt.cpp | 757 if (A.ugt(B)) { 1978 Overflow = Res.ugt(*this); 2033 Overflow = ShAmt.ugt(countLeadingZeros());
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | SeparateConstOffsetFromGEP.cpp | 1308 Offset.ugt(ObjectSize)) { in swapGEPOperand()
|
H A D | GuardWidening.cpp | 694 .ugt(APInt::getSignedMinValue(BitWidth)))
|
H A D | SROA.cpp | 762 if (GEPOffset.ugt(AllocSize)) 815 if (Size > AllocSize || Offset.ugt(AllocSize - Size)) { 1489 if (NumSkippedElements.ugt(VecTy->getNumElements())) 1501 if (NumSkippedElements.ugt(ArrTy->getNumElements()))
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
H A D | LegalizerHelper.cpp | 3104 if (Amt.ugt(VTBits)) { in narrowScalarShiftByConstant() 3106 } else if (Amt.ugt(NVTBits)) { in narrowScalarShiftByConstant() 3122 if (Amt.ugt(VTBits)) { in narrowScalarShiftByConstant() 3124 } else if (Amt.ugt(NVTBits)) { in narrowScalarShiftByConstant() 3142 if (Amt.ugt(VTBits)) { in narrowScalarShiftByConstant() 3145 } else if (Amt.ugt(NVTBits)) { in narrowScalarShiftByConstant()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
H A D | LegalizeIntegerTypes.cpp | 1972 if (Amt.ugt(VTBits)) { in ExpandShiftByConstant() 1974 } else if (Amt.ugt(NVTBits)) { in ExpandShiftByConstant() 1993 if (Amt.ugt(VTBits)) { in ExpandShiftByConstant() 1995 } else if (Amt.ugt(NVTBits)) { in ExpandShiftByConstant() 2014 if (Amt.ugt(VTBits)) { in ExpandShiftByConstant() 2017 } else if (Amt.ugt(NVTBits)) { in ExpandShiftByConstant()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
H A D | APInt.cpp | 1990 Overflow = Res.ugt(*this); 2038 Overflow = ShAmt.ugt(countLeadingZeros());
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
H A D | MemoryBuiltins.cpp | 684 if (Size.ugt(MaxSize)) in visitCallSite()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
H A D | LLLexer.cpp | 710 KEYWORD(sge); KEYWORD(ult); KEYWORD(ugt); KEYWORD(ule); KEYWORD(uge); in LexIdentifier()
|