Home
last modified time | relevance | path

Searched refs:sdiv (Results 1 – 25 of 73) sorted by relevance

123

/third_party/openssl/crypto/bn/
Dbn_div.c268 BIGNUM *tmp, *snum, *sdiv, *res; in bn_div_fixed_top() local
284 sdiv = BN_CTX_get(ctx); in bn_div_fixed_top()
285 if (sdiv == NULL) in bn_div_fixed_top()
289 if (!BN_copy(sdiv, divisor)) in bn_div_fixed_top()
291 norm_shift = bn_left_align(sdiv); in bn_div_fixed_top()
292 sdiv->neg = 0; in bn_div_fixed_top()
303 div_n = sdiv->top; in bn_div_fixed_top()
323 d0 = sdiv->d[div_n - 1]; in bn_div_fixed_top()
324 d1 = (div_n == 1) ? 0 : sdiv->d[div_n - 2]; in bn_div_fixed_top()
422 l0 = bn_mul_words(tmp->d, sdiv->d, div_n, q); in bn_div_fixed_top()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DConstantRange.cpp790 return sdiv(Other); in binaryOp()
1052 ConstantRange ConstantRange::sdiv(const ConstantRange &RHS) const { in sdiv() function in ConstantRange
1068 PosRes = ConstantRange(PosL.Lower.sdiv(PosR.Upper - 1), in sdiv()
1069 (PosL.Upper - 1).sdiv(PosR.Lower) + 1); in sdiv()
1078 APInt Lo = (NegL.Upper - 1).sdiv(NegR.Lower); in sdiv()
1092 ConstantRange(Lo, NegL.Lower.sdiv(AdjNegRUpper - 1) + 1)); in sdiv()
1108 AdjNegLLower.sdiv(NegR.Upper - 1) + 1)); in sdiv()
1112 ConstantRange(std::move(Lo), NegL.Lower.sdiv(NegR.Upper - 1) + 1)); in sdiv()
1119 NegRes = ConstantRange((PosL.Upper - 1).sdiv(NegR.Upper - 1), in sdiv()
1120 PosL.Lower.sdiv(NegR.Lower) + 1); in sdiv()
[all …]
/third_party/mesa3d/src/util/tests/fast_idiv_by_const/
Dfast_idiv_by_const_test.cpp251 sdiv(int64_t a, int64_t b, unsigned bit_size) in sdiv() function
313 EXPECT_EQ(fast_sdiv(n, d, m, bits), sdiv(n, d, bits)); in random_sdiv_test()
355 EXPECT_EQ(fast_sdiv(n, d, m, 8), sdiv(n, d, 8)); in TEST()
/third_party/ltp/tools/sparse/sparse-src/validation/optim/
Dbinops-same-args.c6 int sdiv(int a) { return a / a; } in sdiv() function
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/crosstest/
Dtest_arith_ll.ll197 %result = sdiv i32 %a, %b
205 %result.trunc = sdiv i8 %a.trunc, %b.trunc
213 %result.trunc = sdiv i16 %a.trunc, %b.trunc
221 %result = sdiv i32 %a, %b
229 %result = sdiv i64 %a, %b
237 %result = sdiv <4 x i32> %a, %b
245 %result = sdiv <8 x i16> %a, %b
253 %result = sdiv <16 x i8> %a, %b
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/
DProfileSummaryBuilder.cpp78 Temp = Temp.sdiv(D); in computeDetailedSummary()
/third_party/ffmpeg/libavfilter/
Daf_afftdn.c614 double wscale, sar, sum, sdiv; in config_input() local
670 sdiv = s->sample_rate / 17640.0; in config_input()
672 s->bin2band[i] = lrint(sdiv * freq2bark((0.5 * i * s->sample_rate) / s->fft_length2)); in config_input()
762 p1 = pow(0.1, 2.5 / sdiv); in config_input()
763 p2 = pow(0.1, 1.0 / sdiv); in config_input()
794 if (i < lrint(12.0 * sdiv)) { in config_input()
795 dnch->band_excit[i] = pow(0.1, 1.45 + 0.1 * i / sdiv); in config_input()
797 dnch->band_excit[i] = pow(0.1, 2.5 - 0.2 * (i / sdiv - 14.0)); in config_input()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DAPSInt.h129 *this = sdiv(RHS);
138 return IsUnsigned ? APSInt(udiv(RHS), true) : APSInt(sdiv(RHS), false);
DAPInt.h1075 APInt sdiv(const APInt &RHS) const;
1076 APInt sdiv(int64_t RHS) const;
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceInst.def43 X(Sdiv, "sdiv", 0) \
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
DAPInt.h898 APInt sdiv(const APInt &RHS) const;
1906 inline APInt sdiv(const APInt &LHS, const APInt &RHS) { return LHS.sdiv(RHS); } in sdiv() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DConstantRange.h392 ConstantRange sdiv(const ConstantRange &Other) const;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVInstrInfoM.td67 def : PatGprGpr<sdiv, DIV>;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/
DMips64r6InstrInfo.td67 class DDIV_DESC : DIVMOD_DESC_BASE<"ddiv", GPR64Opnd, II_DDIV, sdiv>;
310 def : MipsPat<(i64 (sext (i32 (sdiv GPR32:$src, GPR32:$src2)))),
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPInt.cpp1672 APInt APInt::sdiv(const APInt &RHS) const { in sdiv() function in APInt
1683 APInt APInt::sdiv(int64_t RHS) const { in sdiv() function in APInt
1985 return sdiv(RHS); in sdiv_ov()
1992 Overflow = Res.sdiv(RHS) != *this || Res.sdiv(*this) != RHS; in smul_ov()
2860 return A.sdiv(B); in RoundingSDiv()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DDependenceAnalysis.cpp1430 Q = Delta.sdiv(G); in findGCD()
1543 APInt TMUL = BM.sdiv(G); in exactSIVtest()
1562 TMUL = AM.sdiv(G); in exactSIVtest()
1951 APInt TMUL = BM.sdiv(G); in exactRDIVtest()
1970 TMUL = AM.sdiv(G); in exactRDIVtest()
3131 APInt CdivB = Charlie.sdiv(Beta); in propagateLine()
3146 APInt CdivA = Charlie.sdiv(Alpha); in propagateLine()
3160 APInt CdivA = Charlie.sdiv(Alpha); in propagateLine()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/
DUtils.cpp375 return C1.sdiv(C2); in ConstantFoldBinOp()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Target/GlobalISel/
DSelectionDAGCompat.td60 def : GINodeEquiv<G_SDIV, sdiv>;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyInstrInteger.td56 defm DIV_S : BinaryInt<sdiv, "div_s", 0x6d, 0x7f>;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
DAPInt.cpp1839 APInt APInt::sdiv(const APInt &RHS) const { in sdiv() function in APInt
1997 return sdiv(RHS); in sdiv_ov()
2004 Overflow = Res.sdiv(RHS) != *this || Res.sdiv(*this) != RHS; in smul_ov()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/
DSparcInstr64Bit.td205 [(set i64:$rd, (sdiv i64:$rs1, i64:$rs2))]>;
209 [(set i64:$rd, (sdiv i64:$rs1, (i64 simm13:$simm13)))]>;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/include/llvm/IR/
DIntrinsicEnums.inc239 sdiv_fix, // llvm.sdiv.fix
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/
DREADME.txt262 icmp pred (sdiv X / C1 ), C2
1600 %1337 = sdiv i32 %1336, 8 ; [#uses=1]
1604 We already catch this (removing the sdiv) if there isn't an add, we should
1612 %361 = sdiv i64 %.046, 8 ; [#uses=1]
1770 %div = sdiv i32 %and, 16
2262 %3 = sdiv i32 %A, %B
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp790 case Instruction::SDiv: INTEGER_VECTOR_FUNCTION(sdiv) break; in visitBinaryOperator()
832 case Instruction::SDiv: R.IntVal = Src1.IntVal.sdiv(Src2.IntVal); break; in visitBinaryOperator()
2081 case Instruction::SDiv: Dest.IntVal = Op0.IntVal.sdiv(Op1.IntVal); break; in getConstantExprValue()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
DLLLexer.cpp846 INSTKEYWORD(udiv, UDiv); INSTKEYWORD(sdiv, SDiv); INSTKEYWORD(fdiv, FDiv); in LexIdentifier()

123