/external/jmonkeyengine/engine/src/test/jme3test/helloworld/ |
HelloCollision.java | 119 al.setColor(ColorRGBA.White.mult(1.3f));
|
/external/webrtc/src/modules/audio_processing/aecm/ |
aecm_core.h | 122 WebRtc_Word16 mult; member in struct:__anon28672
|
/frameworks/av/media/libstagefright/codecs/amrnb/common/include/ |
basic_op_arm_gcc_v5.h | 458 FUNCTION NAME: mult 477 __inline Word16 mult(Word16 var1, Word16 var2, Flag *pOverflow) function
|
basic_op_arm_v5.h | 375 FUNCTION NAME: mult 394 __inline Word16 mult(Word16 var1, Word16 var2, Flag *pOverflow) function
|
basic_op_c_equivalent.h | 343 /* result = mult (L_var1_hi, L_var2_lo, pOverflow); */ 359 /* result = mult (L_var1_lo, L_var2_hi, pOverflow); */ 434 FUNCTION NAME: mult 453 static inline Word16 mult(Word16 var1, Word16 var2, Flag *pOverflow) function
|
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
ColorRGBA.java | 330 public ColorRGBA mult(ColorRGBA c) {
method in class:ColorRGBA 341 public ColorRGBA mult(float scalar) {
method in class:ColorRGBA
|
Vector2f.java | 341 * <code>mult</code> multiplies this vector by a scalar. The resultant 348 public Vector2f mult(float scalar) { method in class:Vector2f 372 * the vector to mult to this vector. 396 public Vector2f mult(float scalar, Vector2f product) { method in class:Vector2f
|
Matrix4f.java | 951 * <code>mult</code> multiplies this matrix by a scalar.
975 public Matrix4f mult(float scalar) {
method in class:Matrix4f 982 public Matrix4f mult(float scalar, Matrix4f store) {
method in class:Matrix4f 989 * <code>mult</code> multiplies this matrix with another matrix. The
997 public Matrix4f mult(Matrix4f in2) {
method in class:Matrix4f 998 return mult(in2, null);
1002 * <code>mult</code> multiplies this matrix with another matrix. The
1013 public Matrix4f mult(Matrix4f in2, Matrix4f store) {
method in class:Matrix4f 1133 public Vector3f mult(Vector3f vec) { method in class:Matrix4f 1147 public Vector3f mult(Vector3f vec, Vector3f store) { method in class:Matrix4f 1168 public Vector4f mult(Vector4f vec) { method in class:Matrix4f 1182 public Vector4f mult(Vector4f vec, Vector4f store) { method in class:Matrix4f 1343 public Quaternion mult(Quaternion vec, Quaternion store) { method in class:Matrix4f 1373 public float[] mult(float[] vec4f) { method in class:Matrix4f [all...] |
/external/jmonkeyengine/engine/src/test/jme3test/bullet/ |
TestBoneRagdoll.java | 189 bulletNode.setLinearVelocity(cam.getDirection().mult(80)); 204 bulletNode.setLinearVelocity(cam.getDirection().mult(180)); 223 // al.setColor(ColorRGBA.White.mult(1));
|
/external/libvorbis/lib/ |
floor1.c | 119 oggpack_write(opb,info->mult-1,2); /* only 1,2,3,4 legal now */ 164 info->mult=oggpack_read(opb,2)+1; /* only 1,2,3,4 legal now */ 231 switch(info->mult){ 784 switch(info->mult){ 941 int ly=post[0]*info->mult; 949 hy*=info->mult; 1068 int ly=fit_value[0]*info->mult; 1074 hy*=info->mult;
|
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/ |
c3_14pf.cpp | 232 mult( 292 mult( 480 /* sq1 = mult(ps1, ps1, pOverflow); */ 538 /* sq1 = mult(ps1, ps1, pOverflow); */ 707 /* index = mult(i, 6554, pOverflow); */
|
c4_17pf.cpp | 242 mult( 304 mult( 490 /* sq1 = mult(ps1, ps1, pOverflow); */ 548 /* sq1 = mult(ps1, ps1, pOverflow); */ 603 /* sq1 = mult(ps1, ps1, pOverflow); */ 779 /* index = mult(i, 6554, pOverflow); */
|
pitch_ol.cpp | 882 if (sub (mult (max1, THRESHOLD), max2) < 0) 893 if (sub (mult (max1, THRESHOLD), max3) < 0) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/ |
nouveau_video.c | 232 static int div_down(int val, int mult) { 233 val &= ~(mult - 1); 234 return val / mult; 237 static int div_up(int val, int mult) { 238 val += mult - 1; 239 return val / mult;
|
/external/mesa3d/src/gallium/drivers/nouveau/ |
nouveau_video.c | 232 static int div_down(int val, int mult) { 233 val &= ~(mult - 1); 234 return val / mult; 237 static int div_up(int val, int mult) { 238 val += mult - 1; 239 return val / mult;
|
/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;
|
/external/jmonkeyengine/engine/src/core/com/jme3/collision/ |
SweepSphere.java | 203 // Vector3f sVelocity = velocity.mult(invDim); 204 // Vector3f sCenter = center.mult(invDim); 205 velocity.mult(invDim, sVelocity); 206 center.mult(invDim, sCenter);
|
/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));
|
/frameworks/av/media/libstagefright/codecs/amrwbenc/inc/ |
basic_op.h | 72 static_vo Word16 mult (Word16 var1, Word16 var2); /* Short mult, 1 */ 73 static_vo Word32 L_mult (Word16 var1, Word16 var2); /* Long mult, 1 */ 79 static_vo Word16 mult_r (Word16 var1, Word16 var2); /* Mult with round, 2 */ 305 | Function Name : mult | 311 | mult(var1,var2) = extract_l(L_shr((var1 times var2),15)) and | 312 | mult(-32768,-32768) = 32767. | 338 static_vo Word16 mult (Word16 var1, Word16 var2) function [all...] |
/cts/tests/tests/widget/src/android/widget/cts/ |
TextViewTest.java | 763 float mult = 1.4f; local 764 setLineSpacing(add, mult); 765 assertEquals(FastMath.round(originalLineHeight * mult + add), mTextView.getLineHeight()); 767 mult = 1.4f; 768 setLineSpacing(add, mult); 769 assertEquals(FastMath.round(originalLineHeight * mult + add), mTextView.getLineHeight()); 773 mult = 1.4f; 774 setLineSpacing(add, mult); 775 assertEquals(FastMath.round(originalLineHeight * mult + add), mTextView.getLineHeight()); 777 mult = -1.4f [all...] |
/external/e2fsprogs/intl/ |
plural.y | 323 lval->op = mult;
|
/external/eigen/bench/ |
sparse_product.cpp | 272 BENCH(gmm::mult(m1, m2, gmmT3);); 275 // BENCH(gmm::mult(gmm::transposed(m1), m2, gmmT3);); 280 // BENCH(gmm::mult(gmm::transposed(m1), gmm::transposed(m2), gmmT3);); 283 // BENCH(gmm::mult(m1, gmm::transposed(m2), gmmT3););
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/ |
BoneContext.java | 122 restMatrix = inverseParentMatrix.mult(restMatrix);
|
/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...] |