/external/clang/test/CodeGen/ |
BasicInstrs.c | 9 int sdiv(int X, int Y) { function
|
/external/chromium_org/third_party/openssl/openssl/crypto/bn/ |
bn_div.c | 185 BIGNUM *tmp,wnum,*snum,*sdiv,*res; local 229 sdiv=BN_CTX_get(ctx); 233 if (sdiv == NULL || res == NULL || tmp == NULL || snum == NULL) 238 if (!(BN_lshift(sdiv,divisor,norm_shift))) goto err; 239 sdiv->neg=0; 246 /* Since we don't know whether snum is larger than sdiv, 250 if (snum->top <= sdiv->top+1) 252 if (bn_wexpand(snum, sdiv->top + 2) == NULL) goto err; 253 for (i = snum->top; i < sdiv->top + 2; i++) snum->d[i] = 0; 254 snum->top = sdiv->top + 2 [all...] |
/external/openssl/crypto/bn/ |
bn_div.c | 185 BIGNUM *tmp,wnum,*snum,*sdiv,*res; local 229 sdiv=BN_CTX_get(ctx); 233 if (sdiv == NULL || res == NULL || tmp == NULL || snum == NULL) 238 if (!(BN_lshift(sdiv,divisor,norm_shift))) goto err; 239 sdiv->neg=0; 246 /* Since we don't know whether snum is larger than sdiv, 250 if (snum->top <= sdiv->top+1) 252 if (bn_wexpand(snum, sdiv->top + 2) == NULL) goto err; 253 for (i = snum->top; i < sdiv->top + 2; i++) snum->d[i] = 0; 254 snum->top = sdiv->top + 2 [all...] |
/external/compiler-rt/lib/arm/ |
divsi3.S | 31 sdiv r0, r0, r1
|
modsi3.S | 29 sdiv r2, r0, r1
|
divmodsi4.S | 31 sdiv r0, r3, r1
|
/external/llvm/include/llvm/ADT/ |
APSInt.h | 102 *this = sdiv(RHS); 111 return IsUnsigned ? APSInt(udiv(RHS), true) : APSInt(sdiv(RHS), false);
|
APInt.h | 68 /// of the operation. For example, sdiv and udiv. However, because the bit 898 APInt sdiv(const APInt &RHS) const; [all...] |
/external/llvm/unittests/ADT/ |
APIntTest.cpp | 168 EXPECT_EQ(neg_one, one.sdiv(neg_one)); 169 EXPECT_EQ(neg_one, neg_one.sdiv(one)); 170 EXPECT_EQ(one, neg_one.sdiv(neg_one)); 171 EXPECT_EQ(one, one.sdiv(one));
|
/external/llvm/utils/vim/ |
llvm.vim | 32 syn keyword llvmStatement ret sdiv select sext sge sgt shl shufflevector sitofp
|
/external/llvm/lib/Analysis/ |
DependenceAnalysis.cpp | [all...] |
ScalarEvolutionExpander.cpp | 235 C->getValue()->getValue().sdiv( 264 SE.getConstant(C->getValue()->getValue().sdiv( [all...] |
ScalarEvolution.cpp | [all...] |
InstructionSimplify.cpp | [all...] |
/external/llvm/lib/Support/ |
APInt.cpp | [all...] |
/external/llvm/test/Bindings/Ocaml/ |
vmcore.ml | 225 * CHECK: @const_sdiv = global i64 sdiv 226 * CHECK: @const_exact_sdiv = global i64 sdiv exact [all...] |
/external/llvm/lib/ExecutionEngine/Interpreter/ |
Execution.cpp | 697 // Additional macros to execute binary operations udiv/sdiv/urem/srem since 735 case Instruction::SDiv: INTEGER_VECTOR_FUNCTION(sdiv) break; 777 case Instruction::SDiv: R.IntVal = Src1.IntVal.sdiv(Src2.IntVal); break; [all...] |
/external/llvm/lib/AsmParser/ |
LLLexer.cpp | 426 /// Keyword sdiv, float, ... 646 INSTKEYWORD(udiv, UDiv); INSTKEYWORD(sdiv, SDiv); INSTKEYWORD(fdiv, FDiv);
|
/external/qemu/target-arm/ |
helper.h | 13 DEF_HELPER_2(sdiv, s32, s32, s32)
|
/external/llvm/lib/Transforms/Scalar/ |
SROA.cpp | [all...] |
/external/chromium_org/v8/src/arm/ |
assembler-arm.h | 946 void sdiv(Register dst, Register src1, Register src2, [all...] |
lithium-codegen-arm.cc | [all...] |
/external/llvm/lib/ExecutionEngine/ |
ExecutionEngine.cpp | 717 case Instruction::SDiv: 735 case Instruction::SDiv:GV.IntVal = LHS.IntVal.sdiv(RHS.IntVal); break; [all...] |
/external/llvm/test/MC/AArch64/ |
basic-a64-instructions.s | [all...] |
/external/llvm/lib/IR/ |
ConstantFold.cpp | [all...] |