Searched refs:sdiv (Results 1 - 20 of 20) sorted by relevance

/macosx-10.9.5/Security-55471.14.18/libsecurity_apple_csp/open_ssl/bn/
H A Dbn_div.c177 BIGNUM *tmp,wnum,*snum,*sdiv,*res; local
203 sdiv=BN_CTX_get(ctx);
211 BN_lshift(sdiv,divisor,norm_shift);
212 sdiv->neg=0;
216 div_n=sdiv->top;
228 /* Get the top 2 words of sdiv */
229 /* i=sdiv->top; */
230 d0=sdiv->d[div_n-1];
231 d1=(div_n == 1)?0:sdiv->d[div_n-2];
245 if (BN_ucmp(&wnum,sdiv) >
[all...]
/macosx-10.9.5/libtelnet-13/
H A Dpk.c75 sdiv(a, base, a, &r);
79 sdiv(a, base, a, &r);
104 sdiv(a, base, a, &r);
108 sdiv(a, base, a, &r);
/macosx-10.9.5/llvmCore-3425.0.33/include/llvm/ADT/
H A DAPSInt.h102 *this = sdiv(RHS);
111 return IsUnsigned ? APSInt(udiv(RHS), true) : APSInt(sdiv(RHS), false);
H A DAPInt.h67 /// of the operation. For example, sdiv and udiv. However, because the bit
802 APInt sdiv(const APInt &RHS) const {
1716 inline APInt sdiv(const APInt& LHS, const APInt& RHS) {
1717 return LHS.sdiv(RHS);
/macosx-10.9.5/llvmCore-3425.0.33/unittests/ADT/
H A DAPIntTest.cpp160 EXPECT_EQ(neg_one, one.sdiv(neg_one));
161 EXPECT_EQ(neg_one, neg_one.sdiv(one));
162 EXPECT_EQ(one, neg_one.sdiv(neg_one));
163 EXPECT_EQ(one, one.sdiv(one));
/macosx-10.9.5/llvmCore-3425.0.33/utils/vim/
H A Dllvm.vim26 syn keyword llvmStatement sdiv udiv fdiv srem urem frem
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/
H A DAPInt.cpp1985 return sdiv(RHS);
1992 Overflow = Res.sdiv(RHS) != *this || Res.sdiv(*this) != RHS;
/macosx-10.9.5/llvmCore-3425.0.33/lib/Analysis/
H A DScalarEvolutionExpander.cpp235 C->getValue()->getValue().sdiv(
264 SE.getConstant(C->getValue()->getValue().sdiv(
H A DScalarEvolution.cpp5365 B -= sdiv(N,Two);
5368 APInt A(N.sdiv(Two));
5397 ConstantInt::get(Context, (NegB + SqrtVal).sdiv(TwoA));
5399 ConstantInt::get(Context, (NegB - SqrtVal).sdiv(TwoA));
H A DInstructionSimplify.cpp1833 // 'sdiv x, CI2' produces [INT_MIN / CI2, INT_MAX / CI2].
1838 Lower = IntMin.sdiv(Val);
1839 Upper = IntMax.sdiv(Val) + 1;
/macosx-10.9.5/llvmCore-3425.0.33/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp538 case Instruction::SDiv: R.IntVal = Src1.IntVal.sdiv(Src2.IntVal); break;
1247 case Instruction::SDiv: Dest.IntVal = Op0.IntVal.sdiv(Op1.IntVal); break;
/macosx-10.9.5/llvmCore-3425.0.33/lib/AsmParser/
H A DLLLexer.cpp409 /// Keyword sdiv, float, ...
606 INSTKEYWORD(udiv, UDiv); INSTKEYWORD(sdiv, SDiv); INSTKEYWORD(fdiv, FDiv);
/macosx-10.9.5/llvmCore-3425.0.33/lib/ExecutionEngine/
H A DExecutionEngine.cpp711 case Instruction::SDiv:GV.IntVal = LHS.IntVal.sdiv(RHS.IntVal); break;
/macosx-10.9.5/llvmCore-3425.0.33/lib/VMCore/
H A DConstantFold.cpp1060 return ConstantInt::get(CI1->getContext(), C1V.sdiv(C2V));
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGSpeculativeJIT.cpp3031 m_jit.assembler().sdiv(quotientThenRemainderGPR, dividendGPR, divisorGPR);
3525 m_jit.assembler().sdiv(quotient.gpr(), op1GPR, op2GPR);
/macosx-10.9.5/JavaScriptCore-7537.78.1/assembler/
H A DARMv7Assembler.h1411 ALWAYS_INLINE void sdiv(RegisterID rd, RegisterID rn, RegisterID rm) function in namespace:JSC::ARMRegisters
/macosx-10.9.5/llvmCore-3425.0.33/bindings/ocaml/llvm/
H A Dllvm.mli1920 [%name = sdiv %x, %y]
1927 [%name = exact sdiv %x, %y]
/macosx-10.9.5/llvmCore-3425.0.33/lib/Transforms/Scalar/
H A DLoopStrengthReduce.cpp484 return SE.getConstant(LA.sdiv(RA));
487 // Distribute the sdiv over addrec operands, if the addrec doesn't overflow.
504 // Distribute the sdiv over add operands, if the add doesn't overflow.
/macosx-10.9.5/llvmCore-3425.0.33/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp2719 if (C2.getBoolValue()) return getConstant(C1.sdiv(C2), VT);
/macosx-10.9.5/cctools-845/as/
H A Darm.c14646 TCE(sdiv, 710f010, fb90f0f0, 3, (RR, oRR, RR), div, t_div),

Completed in 503 milliseconds