HomeSort by relevance Sort by last modified time
    Searched refs:mult (Results 76 - 100 of 280) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/queue/
TransparentComparator.java 78 viewVector.mult(retval, tempVec);
  /external/jmonkeyengine/engine/src/test/jme3test/bullet/
TestPhysicsCharacter.java 129 Vector3f camDir = cam.getDirection().mult(0.2f);
130 Vector3f camLeft = cam.getLeft().mult(0.2f);
142 viewDirection.addLocal(camLeft.mult(0.02f));
145 viewDirection.addLocal(camLeft.mult(0.02f).negate());
TestCcd.java 137 bulletg.getControl(RigidBodyControl.class).setLinearVelocity(cam.getDirection().mult(40));
147 bulletg.getControl(RigidBodyControl.class).setLinearVelocity(cam.getDirection().mult(40));
  /external/libvorbis/lib/
backends.h 71 int mult; /* 1 2 3 or 4 */ member in struct:__anon21117
  /frameworks/av/media/libstagefright/codecs/amrnb/common/src/
vad1.cpp 188 temp0 = mult(COEFF5_1, data0, pOverflow);
192 temp1 = mult(COEFF5_1, temp0, pOverflow);
195 temp3 = mult(COEFF5_2, data1, pOverflow);
200 temp2 = mult(COEFF5_2, temp3, pOverflow);
206 temp1 = mult(COEFF5_1, temp0, pOverflow);
210 temp1 = mult(COEFF5_1, data0, pOverflow);
213 data1 = mult(COEFF5_2, temp3, pOverflow);
217 temp2 = mult(COEFF5_2, data1, pOverflow);
307 temp0 = mult(COEFF5_1, data[0], pOverflow);
310 temp1 = mult(COEFF5_1, temp0, pOverflow)
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d_gain_c.cpp 231 *gain_code = shl(mult(gcode0, *p++, pOverflow), 1, pOverflow);
  /system/media/audio_utils/
fixedfft.cpp 87 static inline int32_t mult(int32_t a, int32_t b) function
140 int32_t y = mult(w, v[i + p]);
154 v[0] = mult(~v[0], 0x80008000);
162 y = mult(y, ((int32_t) twiddle[i << scale]));
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Vector4f.java 288 * @param mult
293 public Vector4f scaleAdd(float scalar, Vector4f mult, Vector4f add) {
294 this.x = mult.x * scalar + add.x;
295 this.y = mult.y * scalar + add.y;
296 this.z = mult.z * scalar + add.z;
297 this.w = mult.w * scalar + add.w;
383 * <code>mult</code> multiplies this vector by a scalar. The resultant
390 public Vector4f mult(float scalar) { method in class:Vector4f
396 * <code>mult</code> multiplies this vector by a scalar. The resultant
403 public Vector4f mult(float scalar, Vector4f product) method in class:Vector4f
480 public Vector4f mult(Vector4f vec) { method in class:Vector4f
498 public Vector4f mult(Vector4f vec, Vector4f store) { method in class:Vector4f
    [all...]
Vector3f.java 275 * @param mult
280 public Vector3f scaleAdd(float scalar, Vector3f mult, Vector3f add) {
281 this.x = mult.x * scalar + add.x;
282 this.y = mult.y * scalar + add.y;
283 this.z = mult.z * scalar + add.z;
450 * <code>mult</code> multiplies this vector by a scalar. The resultant
457 public Vector3f mult(float scalar) { method in class:Vector3f
463 * <code>mult</code> multiplies this vector by a scalar. The resultant
470 public Vector3f mult(float scalar, Vector3f product) { method in class:Vector3f
502 * the vector to mult to this vector.
542 public Vector3f mult(Vector3f vec) { method in class:Vector3f
560 public Vector3f mult(Vector3f vec, Vector3f store) { method in class:Vector3f
    [all...]
Transform.java 197 parent.rot.mult(rot, rot);
244 return rot.mult(store.set(in).multLocal(scale), store).addLocal(translation);
254 // rot.inverse().mult(store, store);
257 rot.inverse().mult(store, store);
  /external/grub/stage2/
char_io.c 106 unsigned long num = *((&c) + 1), mult = 10; local
111 mult = 16;
123 int dig = num % mult;
126 while (num /= mult);
851 int mult = 10, found = 0; local
859 mult = 16;
873 if (mult == 10 || digit > 5)
879 if (myint > ((MAXINT - digit) / mult))
884 myint = (myint * mult) + digit;
  /external/speex/libspeex/
lsp.c 410 spx_word32_t mult, a; local
486 mult = MULT16_32_Q14(freqn[2*i],xp[i][j+1]);
487 xp[i+1][j+2] = ADD32(SUB32(xp[i][j+2], mult), xp[i][j]);
488 mult = MULT16_32_Q14(freqn[2*i+1],xq[i][j+1]);
489 xq[i+1][j+2] = ADD32(SUB32(xq[i][j+2], mult), xq[i][j]);
494 mult = MULT16_32_Q14(freqn[2*i],xp[i][j+1]);
495 xp[i+1][j+2] = SUB32(xp[i][j], mult);
496 mult = MULT16_32_Q14(freqn[2*i+1],xq[i][j+1]);
497 xq[i+1][j+2] = SUB32(xq[i][j], mult);
  /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...]
g_adapt.cpp 491 result = mult(24660, filt, pOverflow);
  /external/jmonkeyengine/engine/src/test/jme3test/light/
TestSpotLight.java 61 al.setColor(ColorRGBA.White.mult(0.8f));
71 spot.setColor(ColorRGBA.White.mult(2));
78 // pl.setColor(ColorRGBA.White.mult(2));
88 // dl.setColor(ColorRGBA.White.mult(2));
  /external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
bytecode.c 313 long mult; local
314 if (yasm_bc_get_multiple(bc, &mult, 1) || mult == 0) {
318 bc->mult_int = mult;
  /external/jmonkeyengine/engine/src/test/jme3test/batching/
TestBatchNodeCluster.java 83 mat1.setColor("GlowColor", ColorRGBA.Blue.mult(10));
87 mat2.setColor("GlowColor", ColorRGBA.Red.mult(10));
91 mat3.setColor("GlowColor", ColorRGBA.Yellow.mult(10));
95 mat4.setColor("GlowColor", ColorRGBA.Orange.mult(10));
  /external/llvm/test/MC/Mips/
micromips-alu-instructions.s 34 # CHECK: mult $9, $7 # encoding: [0x3c,0x8b,0xe9,0x00]
63 mult $9, $7
  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Point.java 68 public Point mult(float x, float y) { method in class:Point
  /external/jmonkeyengine/engine/src/core/com/jme3/input/
FlyByCamera.java 260 mat.mult(up, up);
261 mat.mult(left, left);
262 mat.mult(dir, dir);
  /external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/
TerrainPatch.java 546 n1.set(calculateNormal(topPoint.mult(scale), rootPoint.mult(scale), leftPoint.mult(scale)));
550 n2.set(calculateNormal(leftPoint.mult(scale), rootPoint.mult(scale), bottomPoint.mult(scale)));
554 n3.set(calculateNormal(bottomPoint.mult(scale), rootPoint.mult(scale), rightPoint.mult(scale)));
558 n4.set(calculateNormal(rightPoint.mult(scale), rootPoint.mult(scale), topPoint.mult(scale)));
    [all...]
  /frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
oper_32b.c 103 L_32 = L_mac (L_32, mult (hi1, lo2), 1);
104 L_32 = L_mac (L_32, mult (lo1, hi2), 1);
132 L_32 = L_mac (L_32, mult (lo, n), 1);
  /external/webrtc/src/modules/audio_processing/aecm/
echo_control_mobile.c 336 nBlocks10ms = nFrames / aecm->aecmCore->mult;
384 * aecm->aecmCore->mult) / (aecm->counter * 40), BUF_SIZE_FRAMES);
393 * aecm->aecmCore->mult) / 40, BUF_SIZE_FRAMES);
526 (kSampMsNb * aecm->aecmCore->mult);
742 nSampSndCard = msInSndCardBuf * kSampMsNb * aecm->aecmCore->mult;
792 nSampSndCard = aecm->msInSndCardBuf * kSampMsNb * aecm->aecmCore->mult;
795 if (delayNew > FAR_BUF_LEN - FRAME_LEN * aecm->aecmCore->mult)
  /external/opencv/cvaux/src/
decomppoly.cpp 75 int mult, mult1, mult2;
103 mult = vec1_x * vec2_y - vec2_x * vec1_y;
104 if( mult == 0 ) {
110 if( mult > 0 ) {
120 if( mult > 0 ) {
  /external/qemu/android/skin/
argb.h 47 mmx_t mult = mmx_expand16(multiplier); local
49 ar = _mm_srli_pi32( _mm_madd_pi16( ar, mult ), rshift );
50 gb = _mm_srli_pi32( _mm_madd_pi16( gb, mult ), rshift );
58 mmx_t mult, mult2, t1, t2, r1, r2; local
63 mult = _mm_cvtsi32_si64( alpha ); // mult = [ 0 | 0 | a | 1-a ]
64 mult2 = _mm_slli_si64( mult, 32 ); // mult2 = [ a | 1-a | 0 | 0 ]
65 mult = _mm_or_si64( mult, mult2 ); // mults = [ a | 1-a | a | 1-a ]
68 r1 = _mm_madd_pi16( t1, mult ); // r1 = [ ra | rr
    [all...]

Completed in 725 milliseconds

1 2 34 5 6 7 8 91011>>