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

123

/external/clang/test/CodeGen/
H A DBasicInstrs.c9 int sdiv(int X, int Y) { function
/external/llvm/test/MC/ARM/
H A Didiv.s13 sdiv r1, r2, r3
15 @ A15-ARM: sdiv r1, r2, r3 @ encoding: [0x12,0xf3,0x11,0xe7]
17 @ A15-THUMB: sdiv r1, r2, r3 @ encoding: [0x92,0xfb,0xf3,0xf1]
20 @ A15-ARM-NOTHUMBHWDIV: sdiv r1, r2, r3 @ encoding: [0x12,0xf3,0x11,0xe7]
22 @ A15-THUMB-NOARMHWDIV: sdiv r1, r2, r3 @ encoding: [0x92,0xfb,0xf3,0xf1]
25 @ ARMV8: sdiv r1, r2, r3 @ encoding: [0x12,0xf3,0x11,0xe7]
27 @ THUMBV8: sdiv r1, r2, r3 @ encoding: [0x92,0xfb,0xf3,0xf1]
30 @ ARMV8-NOTHUMBHWDIV: sdiv r1, r2, r3 @ encoding: [0x12,0xf3,0x11,0xe7]
32 @ THUMBV8-NOTHUMBHWDIV: sdiv r1, r2, r3 @ encoding: [0x92,0xfb,0xf3,0xf1]
H A Dinvalid-idiv.s10 sdiv r1, r2, r3
13 @ ARM-A15: sdiv r1, r2, r3
17 @ THUMB-A15: sdiv r1, r2, r3
22 @ ARM: sdiv r1, r2, r3
26 @ THUMB: sdiv r1, r2, r3
H A Ddirective-arch_extension-idiv.s29 sdiv r0, r1, r2
48 sdiv r0, r1, r2
H A Dthumbv8m.s52 // CHECK: sdiv r1, r2, r3 @ encoding: [0x92,0xfb,0xf3,0xf1]
53 sdiv r1, r2, r3 label
/external/boringssl/src/crypto/bn/
H A Ddiv.c195 BIGNUM *tmp, wnum, *snum, *sdiv, *res; local
216 sdiv = BN_CTX_get(ctx);
222 if (sdiv == NULL || res == NULL || tmp == NULL || snum == NULL) {
228 if (!(BN_lshift(sdiv, divisor, norm_shift))) {
231 sdiv->neg = 0;
239 * larger than sdiv, we pad snum with enough zeroes without changing its
241 if (snum->top <= sdiv->top + 1) {
242 if (bn_wexpand(snum, sdiv->top + 2) == NULL) {
245 for (i = snum->top; i < sdiv->top + 2; i++) {
248 snum->top = sdiv
[all...]
/external/compiler-rt/lib/builtins/arm/
H A Ddivsi3.S44 sdiv r0, r0, r1
H A Dmodsi3.S41 sdiv r2, r0, r1
H A Ddivmodsi4.S44 sdiv r0, r3, r1
/external/llvm/lib/ProfileData/
H A DProfileSummaryBuilder.cpp75 Temp = Temp.sdiv(D);
/external/swiftshader/third_party/LLVM/unittests/ADT/
H A DAPIntTest.cpp154 EXPECT_EQ(neg_one, one.sdiv(neg_one));
155 EXPECT_EQ(neg_one, neg_one.sdiv(one));
156 EXPECT_EQ(one, neg_one.sdiv(neg_one));
157 EXPECT_EQ(one, one.sdiv(one));
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DAPSInt.h102 *this = sdiv(RHS);
111 return IsUnsigned ? APSInt(udiv(RHS), true) : APSInt(sdiv(RHS), false);
H A DAPInt.h65 /// of the operation. For example, sdiv and udiv. However, because the bit
766 APInt sdiv(const APInt &RHS) const {
1665 inline APInt sdiv(const APInt& LHS, const APInt& RHS) {
1666 return LHS.sdiv(RHS);
/external/valgrind/none/tests/arm64/
H A Dinteger.stdout.exp1985 sdiv x21,x20,x19 :: rd ffffffffffffffff rm 4b154113f7d32514, rn cce230caafbf9cc9, cin 0, nzcv 00000000
1986 sdiv x21,x20,x19 :: rd fffffffffffffffc rm 33d5d595721d4f13, rn f4509311f443a7ce, cin 0, nzcv 00000000
1987 sdiv x21,x20,x19 :: rd 0000000000000004 rm 4a3c6de6954cbc17, rn 111b21e39fbd7254, cin 0, nzcv 00000000
1988 sdiv x21,x20,x19 :: rd 0000000000000000 rm fbb5c64ed1b044c6, rn 33ca4c4fb3960326, cin 0, nzcv 00000000
1989 sdiv x21,x20,x19 :: rd 0000000000000000 rm 2b7c5939d7c0f528, rn b73870a5a6630162, cin 0, nzcv 00000000
1990 sdiv x21,x20,x19 :: rd 0000000000000000 rm 02fe41918ac5cdba, rn 48e0815289728f05, cin 0, nzcv 00000000
1991 sdiv x21,x20,x19 :: rd ffffffffffffff79 rm b60a8f381f187bae, rn 008c208cc413ff72, cin 0, nzcv 00000000
1992 sdiv x21,x20,x19 :: rd 0000000000000005 rm 0000000000000065, rn 0000000000000014, cin 0, nzcv 00000000
1993 sdiv x21,x20,x19 :: rd 0000000000000005 rm 0000000000000064, rn 0000000000000014, cin 0, nzcv 00000000
1994 sdiv x2
[all...]
/external/llvm/include/llvm/ADT/
H A DAPSInt.h112 *this = sdiv(RHS);
121 return IsUnsigned ? APSInt(udiv(RHS), true) : APSInt(sdiv(RHS), false);
H A DAPInt.h66 /// of the operation. For example, sdiv and udiv. However, because the bit
922 APInt LLVM_ATTRIBUTE_UNUSED_RESULT sdiv(const APInt &RHS) const;
1879 inline APInt sdiv(const APInt &LHS, const APInt &RHS) { return LHS.sdiv(RHS); }
/external/llvm/test/MC/Sparc/
H A Dsparc-alu-instructions.s22 ! CHECK: sdiv %g1, %g2, %g3 ! encoding: [0x86,0x78,0x40,0x02]
23 sdiv %g1, %g2, %g3
/external/llvm/unittests/ADT/
H A DAPIntTest.cpp182 EXPECT_EQ(neg_one, one.sdiv(neg_one));
183 EXPECT_EQ(neg_one, neg_one.sdiv(one));
184 EXPECT_EQ(one, neg_one.sdiv(neg_one));
185 EXPECT_EQ(one, one.sdiv(one));
434 q = p.sdiv(a);
450 q = p.sdiv(b);
/external/llvm/utils/vim/syntax/
H A Dllvm.vim32 syn keyword llvmStatement olt one or ord phi ptrtoint resume ret sdiv select
/external/swiftshader/third_party/LLVM/utils/vim/
H A Dllvm.vim26 syn keyword llvmStatement sdiv udiv fdiv srem urem frem
/external/llvm/test/MC/AArch64/
H A Darm64-arithmetic-encoding.s380 sdiv w1, w2, w3
381 sdiv x1, x2, x3
385 ; CHECK: sdiv w1, w2, w3 ; encoding: [0x41,0x0c,0xc3,0x1a]
386 ; CHECK: sdiv x1, x2, x3 ; encoding: [0x41,0x0c,0xc3,0x9a]
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp1353 Q = Delta.sdiv(G);
1466 APInt TMUL = BM.sdiv(G);
1485 TMUL = AM.sdiv(G);
1874 APInt TMUL = BM.sdiv(G);
1893 TMUL = AM.sdiv(G);
3047 APInt CdivB = Charlie.sdiv(Beta);
3062 APInt CdivA = Charlie.sdiv(Alpha);
3076 APInt CdivA = Charlie.sdiv(Alpha);
/external/llvm/lib/Support/
H A DAPInt.cpp1880 APInt APInt::sdiv(const APInt &RHS) const {
2038 return sdiv(RHS);
2045 Overflow = Res.sdiv(RHS) != *this || Res.sdiv(*this) != RHS;
/external/llvm/test/Bindings/OCaml/
H A Dcore.ml274 * CHECK: @const_sdiv = global i64 sdiv
275 * CHECK: @const_exact_sdiv = global i64 sdiv exact
1288 * CHECK: %build_sdiv = sdiv i32 %P1, %P2
1289 * CHECK: %build_exact_sdiv = sdiv exact i32 %P1, %P2
/external/swiftshader/third_party/LLVM/test/Bindings/Ocaml/
H A Dvmcore.ml223 * RUN: grep {@const_sdiv = global i64 sdiv } < %t.ll
224 * RUN: grep {@const_exact_sdiv = global i64 sdiv exact } < %t.ll
1000 * RUN: grep {%build_sdiv = sdiv i32 %P1, %P2} < %t.ll
1001 * RUN: grep {%build_exact_sdiv = sdiv exact i32 %P1, %P2} < %t.ll

Completed in 1780 milliseconds

123