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

1 2 3

  /external/chromium_org/v8/test/mjsunit/
deopt-minus-zero.js 30 function mul (a, b) { function
34 mul(-1, -1);
35 mul(0x80000001|0, -1);
36 mul(0x80000001|0, -1);
37 %OptimizeFunctionOnNextCall(mul);
38 mul(0, -1);
39 %OptimizeFunctionOnNextCall(mul);
40 mul(0, -1);
42 assertOptimized(mul);
div-mul-minus-one.js 41 function mul(g) { function
45 expected_MinInt = mul(kMinInt);
46 expected_minus_zero = mul(0);
47 %OptimizeFunctionOnNextCall(mul);
48 assertEquals(expected_MinInt, mul(kMinInt));
49 assertOptimized(mul);
50 assertEquals(expected_minus_zero , mul(0));
51 assertOptimized(mul);
smi-mul.js 30 function mul(a, b) { function
35 mul(-1, 2);
36 mul(-1, 2);
37 %OptimizeFunctionOnNextCall(mul);
38 assertEquals(-2, mul(-1, 2));
39 assertOptimized(mul);
42 assertEquals(-0, mul(-1, 0));
43 assertUnoptimized(mul);
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2132.js 30 function mul(x, y) { function
34 mul(0, 0);
35 mul(0, 0);
36 %OptimizeFunctionOnNextCall(mul);
37 assertEquals(0, mul(0, -1));
38 assertOptimized(mul);
regress-1278.js 41 function mul(x, y) { function
60 assertEquals(0, mul(0, 0));
61 assertEquals(-0, mul(0, -0));
62 assertEquals(-0, mul(-0, 0));
63 assertEquals(0, mul(-0, -0));
  /external/chromium_org/v8/src/base/
division-by-constant.cc 54 T mul = q2 + 1; member in namespace:v8::base
55 return {neg ? (0 - mul) : mul, p - bits, false};
  /external/chromium_org/v8/test/cctest/compiler/
test-schedule.cc 141 Node* mul = graph.NewNode(machine.Int32Mul(), param0, param1); local
142 Node* ret = graph.NewNode(common.Return(), mul, start);
  /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
  /external/chromium_org/third_party/boringssl/src/crypto/bn/asm/
x86_64-gcc.c 59 #undef mul macro
84 #define mul(r, a, word, carry) \ macro
134 mul(rp[0], ap[0], w, c1);
135 mul(rp[1], ap[1], w, c1);
136 mul(rp[2], ap[2], w, c1);
137 mul(rp[3], ap[3], w, c1);
143 mul(rp[0], ap[0], w, c1);
146 mul(rp[1], ap[1], w, c1);
149 mul(rp[2], ap[2], w, c1);
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_builder.cpp 186 ir_expression *mul(operand a, operand b) function in namespace:ir_builder
loop_controls.cpp 130 ir_expression *const mul = local
135 new(mem_ctx) ir_expression(ir_binop_add, mul->type, mul, from);
  /external/mesa3d/src/glsl/
ir_builder.cpp 186 ir_expression *mul(operand a, operand b) function in namespace:ir_builder
loop_controls.cpp 130 ir_expression *const mul = local
135 new(mem_ctx) ir_expression(ir_binop_add, mul->type, mul, from);
  /external/openssl/crypto/bn/asm/
x86_64-gcc.c 64 #undef mul macro
90 #define mul(r,a,word,carry) do { \ macro
141 mul(rp[0],ap[0],w,c1);
142 mul(rp[1],ap[1],w,c1);
143 mul(rp[2],ap[2],w,c1);
144 mul(rp[3],ap[3],w,c1);
149 mul(rp[0],ap[0],w,c1); if (--num == 0) return c1;
150 mul(rp[1],ap[1],w,c1); if (--num == 0) return c1;
151 mul(rp[2],ap[2],w,c1);
  /external/openssl/crypto/bn/
bn_lcl.h 332 #define mul(r,a,w,c) { \ macro
359 #define mul(r,a,w,c) { \ macro
387 #define mul(r,a,w,c) { \ macro
467 #define mul(r,a,bl,bh,c) { \ macro
  /external/chromium_org/third_party/skia/src/core/
SkFloat.h 43 void mul(const SkFloat& a) { fPacked = Mul(fPacked, a.fPacked); } function in class:SkFloat
44 void setMul(const SkFloat& a, const SkFloat& b) { fPacked = Mul(a.fPacked, b.fPacked); }
97 static int32_t Mul(int32_t, int32_t);
  /external/chromium_org/third_party/skia/src/effects/
SkAvoidXfermode.cpp 71 static int scale_dist_14(int dist, uint32_t mul, uint32_t sub) {
72 int tmp = dist * mul - sub;
87 uint32_t mul = fDistMul; local
107 d = scale_dist_14(d, mul, sub);
136 uint32_t mul = fDistMul; local
156 d = scale_dist_14(d, mul, sub);
SkEmbossMask.cpp 113 int mul = ambient; local
128 mul = SkFastMin32(mul + dot, 255);
150 multiply[x] = SkToU8(mul);
  /external/chromium_org/third_party/tlslite/tlslite/utils/
rijndael.py 69 def mul(a, b): function
130 AA[t][j] ^= mul(AA[i][j], AA[t][i])
146 r = r | mul(a, b)
184 r = mul(2, r)
200 del mul
  /art/runtime/
parsed_options.cc 73 size_t mul; local
75 mul = 1;
77 mul = KB;
79 mul = MB;
81 mul = GB;
87 if (val <= std::numeric_limits<size_t>::max() / mul) {
88 val *= mul;
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/bn/
generic.c 82 #define mul(r, a, w, c) \ macro
112 #define mul(r, a, w, c) \ macro
143 #define mul(r, a, w, c) \ macro
236 #define mul(r, a, bl, bh, c) \ macro
294 mul(rp[0], ap[0], w, c1);
295 mul(rp[1], ap[1], w, c1);
296 mul(rp[2], ap[2], w, c1);
297 mul(rp[3], ap[3], w, c1);
303 mul(rp[0], ap[0], w, c1);
380 mul(rp[0], ap[0], bl, bh, carry)
    [all...]
  /external/deqp/framework/common/
tcuVectorUtil.hpp 45 template<typename T> inline T mul (T a, T b) { return a * b; } function in namespace:tcu
417 TCU_DECLARE_VECTOR_BINARY_FUNC(mul, mul)
  /external/llvm/lib/Support/
APInt.cpp 326 static void mul(uint64_t dest[], uint64_t x[], unsigned xlen, uint64_t y[], function
385 mul(dest, pVal, lhsWords, RHS.pVal, rhsWords);
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/ec/
internal.h 163 * (default implementations are used if the 'mul' pointer is 0): */
164 int (*mul)(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, member in struct:ec_method_st
  /external/openssl/crypto/ec/
ec_lcl.h 160 * (default implementations are used if the 'mul' pointer is 0): */
161 int (*mul)(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, member in struct:ec_method_st
292 * (ec_lib.c uses these as defaults if group->method->mul is 0) */

Completed in 1761 milliseconds

1 2 3