/third_party/ltp/tools/sparse/sparse-src/validation/ |
D | tautological-compare.c | 8 int sge(int a) { return a >= a; } in sge() function
|
/third_party/ltp/tools/sparse/sparse-src/validation/optim/ |
D | canonical-cmp.c | 9 sint sge(sint p, sint a) { return (123 <= p) == (p >= 123); } in sge() function
|
D | binops-same-args.c | 16 int sge(int a) { return a >= a; } in sge() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/ |
D | test_icmp_i1vec.ll | 68 %cmp = icmp sge <16 x i1> %a.trunc, %b.trunc 158 %cmp = icmp sge <8 x i1> %a.trunc, %b.trunc 248 %cmp = icmp sge <4 x i1> %a.trunc, %b.trunc
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceInst.def | 99 X(Sge, Sle, "sge") \
|
/third_party/mesa3d/src/gallium/drivers/etnaviv/ |
D | etnaviv_compiler_nir_emit.c | 73 …OPC(seq, SET, 0_1_X, EQ), OPC(sne, SET, 0_1_X, NE), OPC(sge, SET, 0_1_X, GE), OPC(slt, SET, 0_1_X,…
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | APSInt.h | 166 return IsUnsigned ? uge(RHS) : sge(RHS);
|
D | APInt.h | 1329 bool sge(const APInt &RHS) const { return !slt(RHS); } in sge() function 1337 bool sge(int64_t RHS) const { return !slt(RHS); } in sge() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | APInt.h | 1135 bool sge(const APInt &RHS) const { return !slt(RHS); } in sge() function 1143 bool sge(int64_t RHS) const { return !slt(RHS); } in sge() function
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | BasicAliasAnalysis.cpp | 1302 return GEPBaseOffset.sge(ObjectBaseOffset + (int64_t)ObjectAccessSize); in isGEPBaseAtNegativeOffset() 1444 if (GEP1BaseOffset.sge(0)) { in aliasGEP() 1501 (SignKnownZero && Scale.sge(0)) || (SignKnownOne && Scale.slt(0)); in aliasGEP()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/ |
D | LLLexer.cpp | 710 KEYWORD(sge); KEYWORD(ult); KEYWORD(ugt); KEYWORD(ule); KEYWORD(uge); in LexIdentifier()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
D | Mips64InstrInfo.td | 1225 "sge\t$rd, $rs, $imm">, GPR_64; 1226 def : MipsInstAlias<"sge $rs, $imm", (SGEImm64 GPR64Opnd:$rs,
|
D | MipsInstrInfo.td | 2683 "sge\t$rd, $rs, $rt">, ISA_MIPS1; 2684 def : MipsInstAlias<"sge $rs, $rt", 2689 "sge\t$rd, $rs, $imm">, GPR_32; 2690 def : MipsInstAlias<"sge $rs, $imm", (SGEImm GPR32Opnd:$rs,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/ |
D | Execution.cpp | 321 IMPLEMENT_INTEGER_ICMP(sge,Ty); in executeICMP_SGE() 322 IMPLEMENT_VECTOR_INTEGER_ICMP(sge,Ty); in executeICMP_SGE()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/lib/Target/Mips/ |
D | MipsGenAsmMatcher.inc | 5080 "d\010seleqz.s\006selnez\010selnez.d\010selnez.s\003seq\004seqi\003sge\004" 7595 …{ 8065 /* sge */, Mips::SGE, Convert__GPR32AsmReg1_0__GPR32AsmReg1_0__GPR32AsmReg1_1, AMFBS_HasStd… 7596 …{ 8065 /* sge */, Mips::SGEImm, Convert__GPR32AsmReg1_0__GPR32AsmReg1_0__SImm321_1, AMFBS_IsGP32bi… 7597 …{ 8065 /* sge */, Mips::SGEImm64, Convert__GPR64AsmReg1_0__GPR64AsmReg1_0__Imm1_1, AMFBS_IsGP64bit… 7598 …{ 8065 /* sge */, Mips::SGE, Convert__GPR32AsmReg1_0__GPR32AsmReg1_1__GPR32AsmReg1_2, AMFBS_HasStd… 7599 …{ 8065 /* sge */, Mips::SGEImm, Convert__GPR32AsmReg1_0__GPR32AsmReg1_1__SImm321_2, AMFBS_IsGP32bi… 7600 …{ 8065 /* sge */, Mips::SGEImm64, Convert__GPR64AsmReg1_0__GPR64AsmReg1_1__Imm1_2, AMFBS_IsGP64bit… 11098 { 8065 /* sge */, 3 /* 0, 1 */, MCK_GPR32AsmReg, AMFBS_HasStdEnc_NotInMicroMips }, 11099 { 8065 /* sge */, 1 /* 0 */, MCK_GPR32AsmReg, AMFBS_IsGP32bit_NotInMicroMips }, 11100 { 8065 /* sge */, 1 /* 0 */, MCK_GPR64AsmReg, AMFBS_IsGP64bit }, [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | PatternMatch.h | 504 return C.sge(*Thr); in isValue()
|
D | IntrinsicsNVVM.td | 24 // * llvm.nvvm.max.i --> select(x sge y, x, y)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAddSub.cpp | 840 C1->isNegative() && C1->sge(-C2->sext(C1->getBitWidth()))) { in foldNoWrapAdd()
|
D | InstCombineSelect.cpp | 1584 (SPF1 == SPF_SMAX && CB->sge(*CC))) in foldSPFofSPF()
|
D | InstCombineCompares.cpp | 5111 if (Op0Min.sge(Op1Max)) // A <s B -> false if min(A) >= max(C) in foldICmpUsingKnownBits() 5140 if (Op0Min.sge(Op1Max)) // A >=s B -> true if min(A) >= max(B) in foldICmpUsingKnownBits()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | ConstantFold.cpp | 1896 case ICmpInst::ICMP_SGE: return ConstantInt::get(ResultTy, V1.sge(V2)); in ConstantFoldCompareInstruction()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
D | NVPTXInstrInfo.td | 662 return v.sge(0) && v.slt(32); 668 return v.sge(0) && v.slt(16);
|
D | NVPTXISelLowering.cpp | 4671 if (ShiftAmt.sge(0) && ShiftAmt.slt(BitWidth)) { in TryMULWIDECombine()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAG.cpp | 2068 case ISD::SETGE: return getBoolConstant(C1.sge(C2), dl, VT, OpVT); in FoldSetCC() 4803 case ISD::SMAX: return C1.sge(C2) ? C1 : C2; in FoldValue()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86ISelDAGToDAG.cpp | 2697 return CR && CR->getSignedMin().sge(-1ull << Width) && in isSExtAbsoluteSymbolRef()
|