HomeSort by relevance Sort by last modified time
    Searched defs:mul (Results 1 - 25 of 346) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/python/cpython2/Doc/includes/
mp_workers.py 41 def mul(a, b): function
55 TASKS1 = [(mul, (i, 7)) for i in range(20)]
mp_pool.py 27 def mul(a, b): function
65 TASKS = [(mul, (i, 7)) for i in range(10)] + \
223 r = pool.apply_async(mul, (7, 8), callback=A.append)
  /external/python/cpython3/Doc/includes/
mp_workers.py 28 def mul(a, b): function
42 TASKS1 = [(mul, (i, 7)) for i in range(20)]
mp_pool.py 20 def mul(a, b): function
50 TASKS = [(mul, (i, 7)) for i in range(10)] + \
  /external/tensorflow/tensorflow/core/graph/
tensor_id.cc 38 unsigned int mul = 1; local
40 index += ((*p - '0') * mul);
41 mul *= 10;
45 if (p > base && *p == ':' && mul > 1) {
  /external/valgrind/memcheck/tests/
wrap2.c 9 int mul ( int x, int y ) { return x * y; } function
13 if (n == 0) return 1; else return mul(n, fact(n-1));
wrap3.c 13 int mul ( int x, int y ) { return x * y; } function
17 if (n == 0) return 1; else return mul(n, fact2(n-1));
21 if (n == 0) return 1; else return mul(n, fact1(n-1));
wrap4.c 17 int mul ( int x, int y ) { return x * y; } function
21 if (n == 0) return 1; else return mul(n, fact2(n-1));
25 if (n == 0) return 1; else return mul(n, fact1(n-1));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_list.py 57 def mul(a, b): return a * b function in function:ListTest.test_overflow
59 self.assertRaises((MemoryError, OverflowError), mul, lst, n)
profilee.py 43 return mul(n, factorial(n-1))
48 def mul(a, b): function
  /external/python/cpython2/Lib/test/
test_list.py 57 def mul(a, b): return a * b function in function:ListTest.test_overflow
59 self.assertRaises((MemoryError, OverflowError), mul, lst, n)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_list.py 57 def mul(a, b): return a * b function in function:ListTest.test_overflow
59 self.assertRaises((MemoryError, OverflowError), mul, lst, n)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_list.py 57 def mul(a, b): return a * b function in function:ListTest.test_overflow
59 self.assertRaises((MemoryError, OverflowError), mul, lst, n)
  /prebuilts/go/darwin-x86/src/math/big/
bits_test.go 32 func (x Bits) mul(y Bits) Bits { func
54 got := fmt.Sprintf("%v", test.x.mul(test.y))
  /prebuilts/go/linux-x86/src/math/big/
bits_test.go 32 func (x Bits) mul(y Bits) Bits { func
54 got := fmt.Sprintf("%v", test.x.mul(test.y))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_list.py 57 def mul(a, b): return a * b function in function:ListTest.test_overflow
59 self.assertRaises((MemoryError, OverflowError), mul, lst, n)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_list.py 57 def mul(a, b): return a * b function in function:ListTest.test_overflow
59 self.assertRaises((MemoryError, OverflowError), mul, lst, n)
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/nds32/
to-16bit-v3.s 10 mul $r0, $r0, $r0 label
11 mul $r7, $r7, $r7 label
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
Nat384.java 6 public static void mul(int[] x, int[] y, int[] zz) method in class:Nat384
8 Nat192.mul(x, y, zz);
9 Nat192.mul(x, 6, y, 6, zz, 12);
19 Nat192.mul(dx, dy, tt);
Nat512.java 6 public static void mul(int[] x, int[] y, int[] zz) method in class:Nat512
8 Nat256.mul(x, y, zz);
9 Nat256.mul(x, 8, y, 8, zz, 16);
19 Nat256.mul(dx, dy, tt);
  /art/test/411-optimizing-arith-mul/src/
Main.java 76 mul(); method
79 public static void mul() { method in class:Main
87 expectEquals(15, $opt$Mul(5, 3));
88 expectEquals(0, $opt$Mul(0, 0));
89 expectEquals(0, $opt$Mul(0, 3));
90 expectEquals(0, $opt$Mul(3, 0));
91 expectEquals(-3, $opt$Mul(1, -3));
92 expectEquals(36, $opt$Mul(-12, -3));
93 expectEquals(33, $opt$Mul(1, 3) * 11);
94 expectEquals(671088645, $opt$Mul(134217729, 5)); // (2^27 + 1) *
    [all...]
  /art/test/640-checker-double-simd/src/
Main.java 55 /// CHECK-START: void Main.mul(double) loop_optimization (before)
59 /// CHECK-START-{ARM64,MIPS64}: void Main.mul(double) loop_optimization (after)
63 static void mul(double x) { method in class:Main
149 mul(2.0);
151 expectEquals(i + i, a[i], "mul");
  /art/test/640-checker-float-simd/src/
Main.java 55 /// CHECK-START: void Main.mul(float) loop_optimization (before)
59 /// CHECK-START-{ARM64,MIPS64}: void Main.mul(float) loop_optimization (after)
63 static void mul(float x) { method in class:Main
148 mul(2.0f);
150 expectEquals(i + i, a[i], "mul");
  /external/boringssl/src/ssl/test/runner/curve25519/
mont25519_amd64.go 27 func mul(dest, a, b *[5]uint64) func
73 mul(&t, &t, &z)
185 mul(&z9, &t, x) /* 9 */
186 mul(&z11, &z9, &z2) /* 11 */
188 mul(&z2_5_0, &t, &z9) /* 2^5 - 2^0 = 31 */
194 mul(&z2_10_0, &t, &z2_5_0) /* 2^10 - 2^0 */
200 mul(&z2_20_0, &t, &z2_10_0) /* 2^20 - 2^0 */
206 mul(&t, &t, &z2_20_0) /* 2^40 - 2^0 */
212 mul(&z2_50_0, &t, &z2_10_0) /* 2^50 - 2^0 */
218 mul(&z2_100_0, &t, &z2_50_0) /* 2^100 - 2^0 *
    [all...]
  /external/llvm/test/MC/ARM/
mul-v4.s 1 @ PR17647: MUL/MLA/SMLAL/UMLAL should be avalaibe to IAS for ARMv4 and higher
5 @ ARMV4: mul r0, r1, r2 @ encoding: [0x91,0x02,0x00,0xe0]
9 mul r0, r1, r2 label

Completed in 1870 milliseconds

1 2 3 4 5 6 7 8 91011>>