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

1 23 4 5 6 7 8 91011>>

  /external/jmonkeyengine/engine/src/test/jme3test/post/
TestPosterization.java 79 mat.setColor("Ambient", ColorRGBA.Yellow.mult(0.2f));
80 mat.setColor("Diffuse", ColorRGBA.Yellow.mult(0.2f));
81 mat.setColor("Specular", ColorRGBA.Yellow.mult(0.8f));
112 light.setColor(ColorRGBA.White.mult(1.5f));
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities_poly.cpp 36 [24 mult 9 add 2sqrt 1acos 1cos=33flops 4func]
38 [16 mult 6 add 1sqrt 1qbrt=24flops 3func]*/
109 [16mult 11add 2sqrt 1cubic 2quadratic=74flops 8funcs]*/
181 [16mult 11add 2sqrt 1cubic 2quadratic=74flops 8funcs]*/
db_utilities_poly.h 44 [5 mult 2 add 1 sqrt=7flops 1func]*/
296 [96mult 60add 1sqrt=156flops 1sqrt]*/
312 [24mult 12add=36flops]*/
328 [48mult 32 add=80flops*/
350 [16mult 12add=28flops*/
357 [4mult 1 sqrt=4flops 1sqrt]*/
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_poly.cpp 36 [24 mult 9 add 2sqrt 1acos 1cos=33flops 4func]
38 [16 mult 6 add 1sqrt 1qbrt=24flops 3func]*/
109 [16mult 11add 2sqrt 1cubic 2quadratic=74flops 8funcs]*/
181 [16mult 11add 2sqrt 1cubic 2quadratic=74flops 8funcs]*/
  /external/jmonkeyengine/engine/src/core/com/jme3/animation/
Bone.java 328 parent.worldRot.mult(localRot, worldRot);
333 parent.worldScale.mult(localScale, worldScale);
337 parent.worldRot.mult(localPos, worldPos);
420 Vector3f scale = worldScale.mult(worldBindInverseScale, tmp3);
423 Quaternion rotate = worldRot.mult(worldBindInverseRot, tmp1);
427 Vector3f translate = worldPos.add(rotate.mult(scale.mult(worldBindInversePos, tmp2), tmp2), tmp2);
447 localRot = localRot.mult(rotation);
478 rotation.mult(localPos, tmpTransform.getTranslation()).addLocal(position);
515 //localRot = localRot.mult(rotation)
    [all...]
  /external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
TestCommonTokenStream.java 46 "MULT : '*';\n" +
67 "MULT : '*';\n" +
88 "MULT : '*';\n" +
118 "MULT : '*';\n" +
149 "MULT : '*';\n" +
  /frameworks/av/media/libstagefright/codecs/aacdec/
tns_inv_filter.cpp 182 mult = 0;
189 mult = mult + tempInt32;
203 mult = mult + tempInt32;
213 mult = mult >> shift_amt;
215 *(pCoef) = *(pCoef) + mult;
311 Int32 mult; local
358 mult = 0
    [all...]
  /development/tools/emulator/system/qemud/
qemud.c 1244 static int multiplexer_open_channel( Multiplexer* mult, Packet* p );
1245 static void multiplexer_close_channel( Multiplexer* mult, int channel );
1246 static void multiplexer_serial_send( Multiplexer* mult, int channel, Packet* p );
    [all...]
  /sdk/emulator/qemud/
qemud.c 1244 static int multiplexer_open_channel( Multiplexer* mult, Packet* p );
1245 static void multiplexer_close_channel( Multiplexer* mult, int channel );
1246 static void multiplexer_serial_send( Multiplexer* mult, int channel, Packet* p );
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/t/examples/
simplecalc.t 19 MULT = '*' ;
29 term : factor ( ( MULT | DIV ) factor )* ;
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
HasPositionalPredChecker.java 33 import org.apache.xpath.operations.Mult;
108 (pred instanceof Mult) ||
  /external/aac/libFDK/include/mips/
cplx_mul.h 112 __asm__ ("mult %[a_Re], %[b_Re];\n"
120 __asm__ ("mult %[a_Re], %[b_Im];\n"
138 __asm__ ("mult %[a_Re], %[b_Re];\n"
145 __asm__ ("mult %[a_Re], %[b_Im];\n"
  /external/dropbear/libtomcrypt/src/encauth/gcm/
gcm_mult_h.c 14 GCM implementation, do the GF mult, by Tom St Denis
  /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...]
Rectangle.java 167 result.set(a.mult(aMod).addLocal(b.mult(s).addLocal(c.mult(t))));
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...]
  /packages/providers/ContactsProvider/res/values-ro/
strings.xml 23 <string name="upgrade_out_of_memory_notification_ticker" msgid="7638747231223520477">"Actualizarea agendei necesit? mai mult? memorie."</string>
  /system/media/audio_utils/
fixedfft.cpp 85 static inline int32_t mult(int32_t a, int32_t b) function
138 int32_t y = mult(w, v[i + p]);
152 v[0] = mult(~v[0], 0x80008000);
160 y = mult(y, twiddle[i << scale]);
  /external/iptables/extensions/
libxt_hashlimit.c 148 uint32_t mult = 1; /* Seconds by default. */ local
156 mult = 1;
158 mult = 60;
160 mult = 60*60;
162 mult = 24*60*60;
172 if (r / mult > XT_HASHLIMIT_SCALE)
175 *val = XT_HASHLIMIT_SCALE * mult / r;
314 uint32_t mult; member in struct:rates
325 if (period > rates[i].mult
326 || rates[i].mult/period < rates[i].mult%period
    [all...]
  /external/ppp/pppd/plugins/pppoatm/
text2qos.c 27 const char mult[] = "kKmMgGg"; local
45 if (*end && (multiplier = strchr(mult,*end))) {
46 while (multiplier >= mult) {
  /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...]
  /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...]
  /frameworks/av/media/libstagefright/codecs/amrnb/common/include/
mult.h 31 Filename: /audio/gsm_amr/c/include/mult.h
36 Description: Created separate header file for mult function.
38 Description: Changed prototype of the mult() function. Instead of using global
56 needed by the mult function.
109 __inline Word16 mult(Word16 var1, Word16 var2, Flag *pOverflow) function
128 __inline Word16 mult(Word16 var1, Word16 var2, Flag *pOverflow) function
159 static inline Word16 mult(Word16 var1, Word16 var2, Flag *pOverflow) function
  /external/icu4c/test/perf/perldriver/
Output.pm 23 my $mult = 1e9; #use nanoseconds
62 print HTML formatNumber(2, $mult, $mean);
66 if((($error*$mult < 10)&&!$percent) || (($error<10)&&$percent)) {
75 print HTML formatNumber(2, $mult, $error);
305 print HTML "<td class=\"sepvalue\">".formatNumber(4, $mult, $ds->getMean)."</td><td class=\"sepvalue\">".formatNumber(4, $mult, $ds->getError)."</td>";
  /external/v8/test/cctest/
test-disasm-mips.cc 123 COMPARE(mult(a0, a1),
124 "00850018 mult a0, a1");
125 COMPARE(mult(t2, t3),
126 "014b0018 mult t2, t3");
127 COMPARE(mult(v0, v1),
128 "00430018 mult v0, v1");

Completed in 2375 milliseconds

1 23 4 5 6 7 8 91011>>