HomeSort by relevance Sort by last modified time
    Searched full:mult (Results 126 - 150 of 581) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/qemu/hw/
ne2000.c 141 uint8_t mult[8]; /* multicast mask array */ member in struct:NE2000State
257 if (!(s->mult[mcast_idx >> 3] & (1 << (mcast_idx & 7))))
415 s->mult[offset - EN1_MULT] = val;
455 ret = s->mult[offset - EN1_MULT];
676 qemu_put_buffer(f, s->mult, 8);
718 qemu_get_buffer(f, s->mult, 8);
  /external/webrtc/src/modules/audio_processing/aec/
echo_cancellation.c 463 nBlocks10ms = nFrames / aecpc->aec->mult;
501 aecpc->aec->mult * 8) / (4 * aecpc->counter * PART_LEN),
511 aecpc->aec->mult * 3) / 40, kMaxBufSizeStart);
595 (sampMsNb * aecpc->aec->mult));
898 int nSampSndCard = aecpc->msInSndCardBuf * sampMsNb * aecpc->aec->mult;
907 current_delay += FRAME_LEN * aecpc->aec->mult;
aec_core.c 443 aec->mult = (short)aec->sampFreq / 16000;
446 aec->mult = (short)aec->sampFreq / 8000;
603 // 1) At most we process |aec->mult|+1 partitions in 10 ms. Make sure we
608 WebRtc_MoveReadPtr(aec->far_buf_windowed, -(aec->mult + 1));
609 aec->system_delay -= WebRtc_MoveReadPtr(aec->far_buf, -(aec->mult + 1)) *
612 WebRtc_MoveReadPtr(aec->far_time_buf, -(aec->mult + 1));
650 const int noiseInitBlocks = 500 * aec->mult;
868 const int prefBandSize = PREF_BAND_SIZE / aec->mult;
869 const int minPrefBand = 4 / aec->mult;
876 const float *ptrGCoh = gCoh[aec->mult - 1]
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
basic_op.h 137 /* Short mult, 1 */
139 __inline Word16 mult (Word16 var1, Word16 var2);
141 Word16 mult (Word16 var1, Word16 var2);
192 /* Mult with round, 2 */
684 /* Short mult, 1 */
686 __inline Word16 mult (Word16 var1, Word16 var2) function
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
a_refl.cpp 146 Word16 mult;
173 mult = div_s(16384, normProd);
181 L_temp = L_mult(mult, temp);
246 Word16 mult; local
277 mult = div_s(16384, normProd);
285 L_temp = L_mult(mult, temp, pOverflow);
dec_lag3.cpp 51 (1) Removed optimization -- mult(i, 3, pOverflow) is NOT the same as adding
52 i to itself 3 times. The reason is because the mult function does a
210 mult(
263 mult(
355 i = mult(
  /packages/apps/Camera/jni/feature_stab/src/dbreg/
dbreg.h 554 double x0,x1,x2,mult; local
560 mult=1.0/((x2!=0.0)?x2:1.0);
561 sd=(y[0]-x0*mult)*(y[0]-x0*mult)+(y[1]-x1*mult)*(y[1]-x1*mult);
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbreg/
dbreg.h 554 double x0,x1,x2,mult; local
560 mult=1.0/((x2!=0.0)?x2:1.0);
561 sd=(y[0]-x0*mult)*(y[0]-x0*mult)+(y[1]-x1*mult)*(y[1]-x1*mult);
  /external/qemu/android/
hw-qemud.c 1416 QemudMultiplexer* mult = opaque; local
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TextViewTest.java 756 float mult = 1.4f; local
757 setLineSpacing(add, mult);
758 assertEquals(FastMath.round(originalLineHeight * mult + add), mTextView.getLineHeight());
760 mult = 1.4f;
761 setLineSpacing(add, mult);
762 assertEquals(FastMath.round(originalLineHeight * mult + add), mTextView.getLineHeight());
766 mult = 1.4f;
767 setLineSpacing(add, mult);
768 assertEquals(FastMath.round(originalLineHeight * mult + add), mTextView.getLineHeight());
770 mult = -1.4f
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
LineSegment.java 119 origin.add(direction.mult(segmentParameter, compVec1),
122 origin.add(direction.mult(extent, compVec1), compVec1);
125 origin.subtract(direction.mult(extent, compVec1), compVec1);
567 return origin.add((direction.mult(extent, store)), store);
575 return origin.subtract((direction.mult(extent, store)), store);
  /external/webp/src/enc/
picture.c 226 #define MULT(x,y) (((int64_t)(x) * (y) + (1 << (RFIX - 1))) >> RFIX)
245 sum = MULT(frac, fx_scale); // fresh fractional start for next pixel
270 const int frac = MULT(frow[x_out], yscale);
271 const int v = MULT(irow[x_out] - frac, fxy_scale);
306 #undef MULT
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
OrientedBoundingBox.java 149 // rotate.mult(xAxis, toReturn.xAxis);
150 // rotate.mult(yAxis, toReturn.yAxis);
151 // rotate.mult(zAxis, toReturn.zAxis);
152 // center.mult(scale, toReturn.center);
153 // rotate.mult(toReturn.center, toReturn.center);
449 // kBoxCenter.addLocal(this.xAxis.mult(.5f * (kMax.x + kMin.x), tempVe));
452 // kBoxCenter.addLocal(this.yAxis.mult(.5f * (kMax.y + kMin.y), tempVe));
455 // kBoxCenter.addLocal(this.zAxis.mult(.5f * (kMax.z + kMin.z), tempVe));
486 // Vector3f akEAxis0 = xAxis.mult(extent.x, _compVect1);
487 // Vector3f akEAxis1 = yAxis.mult(extent.y, _compVect2);
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/
Cylinder.java 267 Vector3f vHeight = Vector3f.UNIT_Z.mult(height);
272 Vector3f vRadius = vRadial.mult(radius);
273 Vector3f vRadius2 = vRadial.mult(radius2);
  /external/libvpx/vpx_scale/generic/
bicubic_scaler.c 185 float mult = 1.0 / 10000.0;
186 unsigned int fixed_mult = mult * 4294967296;//65536;
195 phase_offset_real = (float)i * mult;
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
mac_32.h 116 product = mult(L_var1_hi, L_var2_lo, pOverflow);
119 product = mult(L_var1_lo, L_var2_hi, pOverflow);
135 product = mult(L_var1_lo, var2, pOverflow);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
qgain795.cpp 48 (1) Removed optimization -- mult(i, 3, pOverflow) is NOT the same as adding
49 i to itself 3 times. The reason is because the mult function does a
324 g2_pitch = mult(g_pitch, g_pitch, pOverflow);
335 g_code = mult(g_code, gcode0, pOverflow);
557 g2_pitch = mult(gain_pit, gain_pit, pOverflow); /* Q14 -> Q13 */
562 /* alpha <= 0.5 -> mult. by 2 to keep precision; compensate in exponent */
567 /* directly store in 32 bit variable because no further mult. required */
573 coeff[2] = mult(tmp, gain_pit, pOverflow);
578 /* alpha <= 0.5 -> mult. by 2 to keep precision; compensate in exponent */
584 coeff[4] = mult(one_alpha, frac_en[3], pOverflow)
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
TreeParser.java 164 * is "MULT" which means my parent must be MULT. "CLASS VARDEF" says
  /external/jmonkeyengine/engine/src/test/jme3test/water/
TestPostWater.java 75 l.setDirection(Vector3f.UNIT_Y.mult(-1));
112 LightScatteringFilter lsf = new LightScatteringFilter(lightDir.mult(-300));
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
intermOut.cpp 98 case EOpVectorTimesMatrixAssign: out << "matrix mult second child into first child"; break;
101 case EOpMatrixTimesMatrixAssign: out << "matrix mult second child into first child"; break;
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
q_plsf_3.cpp 218 temp = mult (wf1[0], temp);
222 temp = mult (wf1[1], temp);
226 temp = mult (wf1[2], temp);
230 temp = mult (wf1[3], temp);
526 temp = mult(wf1[0], temp);
530 temp = mult(wf1[1], temp);
534 temp = mult(wf1[2], temp);
549 temp = mult(wf1[0], temp);
553 temp = mult(wf1[1], temp);
557 temp = mult(wf1[2], temp)
    [all...]
  /external/chromium/webkit/glue/resources/
webkit_strings_ro.xtb 47 <translation id="2226276347425096477">Mic?ora?i acest text la cel mult <ph name="MAX_CHARACTERS"/> (de) caractere (în prezent utiliza?i <ph name="CURRENT_LENGTH"/> (de) caractere).</translation>
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/objects/infos/
RigidBodyMotionState.java 81 tmp_inverseWorldRotation.mult(localRotationQuat, localRotationQuat);
  /external/jmonkeyengine/engine/src/bullet/com/jme3/bullet/util/
DebugShapeFactory.java 86 childCollisionShape.rotation.mult(tempRot, tempRot);
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/control/
KinematicRagdollControl.java 183 tmpRot2.set(targetModel.getWorldRotation()).inverseLocal().mult(tmpRot1, tmpRot1);
278 targetModel.getWorldRotation().mult(tmpRot1, tmpRot1);
366 baseRigidBody = new PhysicsRigidBody(new BoxCollisionShape(Vector3f.UNIT_XYZ.mult(0.1f)), 1);
726 q3.set(targetModel.getWorldRotation()).inverseLocal().mult(q2, q2);
    [all...]

Completed in 867 milliseconds

1 2 3 4 56 7 8 91011>>