HomeSort by relevance Sort by last modified time
    Searched defs:mul (Results 51 - 75 of 131) sorted by null

1 23 4 5 6

  /external/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/skia/src/effects/
SkEmbossMask.cpp 113 int mul = ambient; local
128 mul = SkFastMin32(mul + dot, 255);
150 multiply[x] = SkToU8(mul);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskViewThumbnail.java 112 int mul = (int) ((1.0f - mDimAlpha) * mBitmapAlpha * 255); local
115 mLightingColorFilter.setColorMultiply(Color.argb(255, mul, mul, mul));
121 int grey = mul + add;
  /system/media/audio_utils/include/audio_utils/
primitives.h 723 int32_t mul(int16_t in, int16_t v) function
767 * Similar to mul, but the 16-bit terms are extracted from a 32-bit interleaved stereo pair.
  /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/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/qemu/util/
cutils.c 312 double val, mul, integral, fraction; local
324 mul = suffix_mul(c, unit);
325 if (mul >= 0) {
328 mul = suffix_mul(default_suffix, unit);
329 assert(mul >= 0);
331 if (mul == 1 && mul_required) {
334 if ((val * mul >= INT64_MAX) || val < 0) {
338 retval = val * mul;
  /external/tremolo/Tremolo/
codebook.c 789 int mul = s->q_del; local
797 mul <<= -shiftM;
803 v[i]= ((add + v[i] * mul) >> shiftM);
  /external/valgrind/main/coregrind/m_debuginfo/
d3basics.c 1021 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
822 mul = ML_(sizeOfType)( tyents, field->Te.Field.typeR )
859 MaybeULong mul; local
    [all...]
storage.c 942 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/chromium_org/third_party/skia/tests/
WritePixelsTest.cpp 231 bool mul = (kUnpremul_SkAlphaType == bmInfo.alphaType()); local
234 bool check = checkPixel(bmpPMColor, canvasPixel, mul);
  /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) */
  /external/skia/tests/
WritePixelsTest.cpp 231 bool mul = (kUnpremul_SkAlphaType == bmInfo.alphaType()); local
234 bool check = checkPixel(bmpPMColor, canvasPixel, mul);
  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_encodemb.c 116 const int mul = 1 + (tx_size == TX_32X32); local
173 dx = mul * (dqcoeff[rc] - coeff[rc]);
186 if ((abs(x) * dequant_ptr[rc != 0] > abs(coeff[rc]) * mul) &&
187 (abs(x) * dequant_ptr[rc != 0] < abs(coeff[rc]) * mul +
285 dqcoeff[rc] = (x * dequant_ptr[rc != 0]) / mul;
  /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/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 129 const int mul = 1 + (tx_size == TX_32X32); local
186 dx = mul * (dqcoeff[rc] - coeff[rc]);
199 if ((abs(x)*dequant_ptr[rc != 0] > abs(coeff[rc]) * mul) &&
200 (abs(x)*dequant_ptr[rc != 0] < abs(coeff[rc]) * mul +
298 dqcoeff[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...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_encodemb.c 129 const int mul = 1 + (tx_size == TX_32X32); local
186 dx = mul * (dqcoeff[rc] - coeff[rc]);
199 if ((abs(x)*dequant_ptr[rc != 0] > abs(coeff[rc]) * mul) &&
200 (abs(x)*dequant_ptr[rc != 0] < abs(coeff[rc]) * mul +
298 dqcoeff[rc] = (x * dequant_ptr[rc != 0]) / mul;
  /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...]
  /external/srec/srec/include/
pre_desc.h 51 { /* mul-table data types */
175 mul_table_info mul; /* Mul-table */ member in struct:__anon34840

Completed in 1905 milliseconds

1 23 4 5 6