HomeSort by relevance Sort by last modified time
    Searched defs:mul (Results 26 - 50 of 101) sorted by null

12 3 4 5

  /external/mesa3d/src/glsl/
loop_controls.cpp 130 ir_expression *const mul = local
135 new(mem_ctx) ir_expression(ir_binop_add, mul->type, mul, from);
  /external/skia/src/core/
SkFloat.h 45 void mul(const SkFloat& a) { fPacked = Mul(fPacked, a.fPacked); } function in class:SkFloat
46 void setMul(const SkFloat& a, const SkFloat& b) { fPacked = Mul(a.fPacked, b.fPacked); }
99 static int32_t Mul(int32_t, int32_t);
  /external/skia/src/effects/
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 77 def mul(a, b): function
138 AA[t][j] ^= mul(AA[i][j], AA[t][i])
154 r = r | mul(a, b)
192 r = mul(2, r)
208 del mul
  /external/dropbear/libtomcrypt/src/math/
gmp_desc.c 223 /* mul */
224 static int mul(void *a, void *b, void *c) function
421 &mul,
ltm_desc.c 238 /* mul */
239 static int mul(void *a, void *b, void *c) function
427 &mul,
tfm_desc.c 243 /* mul */
244 static int mul(void *a, void *b, void *c) function
715 &mul,
  /external/jmonkeyengine/engine/src/android/jme3tools/android/
Fixed.java 205 public static int mul(int a, int b) { method in class:Fixed
  /external/llvm/lib/Support/
APInt.cpp 325 static void mul(uint64_t dest[], uint64_t x[], unsigned xlen, uint64_t y[], function
384 mul(dest, pVal, lhsWords, RHS.pVal, rhsWords);
    [all...]
  /external/qemu/
cutils.c 331 double val, mul, integral, fraction; local
359 mul = 1;
365 mul = 1 << 10;
372 mul = 1ULL << 20;
375 mul = 1ULL << 30;
378 mul = 1ULL << 40;
395 if ((val * mul >= INT64_MAX) || val < 0) {
398 retval = val * mul;
  /external/tremolo/Tremolo/
codebook.c 784 int mul = s->q_del; local
792 mul <<= -shiftM;
798 v[i]= ((add + v[i] * mul) >> shiftM);
  /external/valgrind/main/coregrind/m_debuginfo/
d3basics.c 1014 MaybeULong *mul, *mul2; local
    [all...]
tytypes.c 651 MaybeULong mul; local
652 mul.ul = 0;
653 mul.b = False;
654 return mul;
657 MaybeULong mul; local
658 mul.ul = ul;
659 mul.b = True;
660 return mul;
781 MaybeULong mul; local
821 mul = ML_(sizeOfType)( tyents, field->Te.Field.typeR )
852 MaybeULong mul; local
    [all...]
  /external/chromium_org/third_party/openssl/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
291 * (ec_lib.c uses these as defaults if group->method->mul is 0) */
  /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
291 * (ec_lib.c uses these as defaults if group->method->mul is 0) */
  /external/skia/tests/
WritePixelsTest.cpp 254 bool mul; local
255 SkPMColor bmpPMColor = convertConfig8888ToPMColor(config8888, bmpColor8888, &mul);
257 REPORTER_ASSERT(reporter, check = checkPixel(bmpPMColor, canvasPixel, mul));
  /art/runtime/
runtime.cc 274 size_t mul; local
276 mul = 1;
278 mul = KB;
280 mul = MB;
282 mul = GB;
288 if (val <= std::numeric_limits<size_t>::max() / mul) {
289 val *= mul;
    [all...]
  /dalvik/vm/
Init.cpp 271 size_t mul; local
274 mul = 1;
276 mul = 1024;
278 mul = 1024 * 1024;
280 mul = 1024 * 1024 * 1024;
287 if (val <= SIZE_MAX / mul) {
288 val *= mul;
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
brw_fs_visitor.cpp 228 ir_expression *mul = ir->operands[mul_arg]->as_expression(); local
230 if (!mul || mul->operation != ir_binop_mul)
234 mul->operands[0]->as_constant() ||
235 mul->operands[1]->as_constant())
241 mul->operands[0]->accept(this);
244 mul->operands[1]->accept(this);
363 /* For integer multiplication, the MUL uses the low 16 bits
368 * FINISHME: Emit just the MUL if we know an operand is small
    [all...]
  /external/dropbear/libtomcrypt/src/headers/
tomcrypt_math.h 207 int (*mul)(void *a, void *b, void *c); member in struct:__anon19196
474 #define mp_mul(a, b, c) ltc_mp.mul(a, b, c)
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi.util_3.2.100.v20100503.jar 
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemb.c 137 const int mul = 1 + (tx_size == TX_32X32); local
194 dx = mul * (dqcoeff_ptr[rc] - coeff_ptr[rc]);
207 if ((abs(x)*dequant_ptr[rc != 0] > abs(coeff_ptr[rc]) * mul) &&
208 (abs(x)*dequant_ptr[rc != 0] < abs(coeff_ptr[rc]) * mul +
308 dqcoeff_ptr[rc] = (x * dequant_ptr[rc != 0]) / mul;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_fs_visitor.cpp 228 ir_expression *mul = ir->operands[mul_arg]->as_expression(); local
230 if (!mul || mul->operation != ir_binop_mul)
234 mul->operands[0]->as_constant() ||
235 mul->operands[1]->as_constant())
241 mul->operands[0]->accept(this);
244 mul->operands[1]->accept(this);
363 /* For integer multiplication, the MUL uses the low 16 bits
368 * FINISHME: Emit just the MUL if we know an operand is small
    [all...]
  /packages/experimental/DreamTheater/src/com/android/dreamtheater/
BouncyDroid.java 63 public Vec mul(float a) { method in class:BouncyDroid.BouncyView.World.Vec
103 p = p.add(v.mul(dt));
105 v = v.add(f.mul(dt/m));
109 v = v.add(f.mul(dt/m));
238 mBody.v = mBody.v.add(newPos.sub(mBody.p).mul(dt));
261 springForce = springForce.norm().mul(mag);
268 mBody.applyForce(mBody.v.mul(-0.01f * mBody.m));
290 mBody.v = mBody.v.norm().mul(MAX_SPEED);
  /external/mdnsresponder/mDNSPosix/
NetMonitor.c 825 int h, m, s, mul, div, TotPkt; local
874 mul = 60;
879 mul = 60000;
899 mprintf("Modern Query Packets: %7d (avg%5d/min)\n", NumPktQ, NumPktQ * mul / div);
900 mprintf("Legacy Query Packets: %7d (avg%5d/min)\n", NumPktL, NumPktL * mul / div);
901 mprintf("Multicast Response Packets: %7d (avg%5d/min)\n", NumPktR, NumPktR * mul / div);
902 mprintf("Total Multicast Packets: %7d (avg%5d/min)\n", TotPkt, TotPkt * mul / div);
904 mprintf("Total New Service Probes: %7d (avg%5d/min)\n", NumProbes, NumProbes * mul / div);
905 mprintf("Total Goodbye Announcements: %7d (avg%5d/min)\n", NumGoodbyes, NumGoodbyes * mul / div);
906 mprintf("Total Query Questions: %7d (avg%5d/min)\n", NumQuestions, NumQuestions * mul / div)
    [all...]

Completed in 1311 milliseconds

12 3 4 5