HomeSort by relevance Sort by last modified time
    Searched full:mult (Results 26 - 50 of 592) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_utilities.h 353 * Scalar multiplication in place: A(3)=mult*A(3).
355 inline void db_MultiplyScalar3(double *A,double mult)
357 (*A++) *= mult; (*A++) *= mult; (*A++) *= mult;
361 * Scalar multiplication: A(3)=mult*B(3).
363 inline void db_MultiplyScalarCopy3(double *A,const double *B,double mult)
365 (*A++)=(*B++)*mult; (*A++)=(*B++)*mult; (*A++)=(*B++)*mult;
    [all...]
db_utilities_linalg.h 36 inline void db_MultiplyScalar6(double A[6],double mult)
38 (*A++) *= mult; (*A++) *= mult; (*A++) *= mult; (*A++) *= mult; (*A++) *= mult;
39 (*A++) *= mult;
44 inline void db_MultiplyScalar7(double A[7],double mult)
46 (*A++) *= mult; (*A++) *= mult; (*A++) *= mult; (*A++) *= mult; (*A++) *= mult
    [all...]
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities.h 353 * Scalar multiplication in place: A(3)=mult*A(3).
355 inline void db_MultiplyScalar3(double *A,double mult)
357 (*A++) *= mult; (*A++) *= mult; (*A++) *= mult;
361 * Scalar multiplication: A(3)=mult*B(3).
363 inline void db_MultiplyScalarCopy3(double *A,const double *B,double mult)
365 (*A++)=(*B++)*mult; (*A++)=(*B++)*mult; (*A++)=(*B++)*mult;
    [all...]
db_utilities_linalg.h 36 inline void db_MultiplyScalar6(double A[6],double mult)
38 (*A++) *= mult; (*A++) *= mult; (*A++) *= mult; (*A++) *= mult; (*A++) *= mult;
39 (*A++) *= mult;
44 inline void db_MultiplyScalar7(double A[7],double mult)
46 (*A++) *= mult; (*A++) *= mult; (*A++) *= mult; (*A++) *= mult; (*A++) *= mult
    [all...]
  /external/llvm/test/CodeGen/Mips/
mulll.ll 15 ; 16: mult ${{[0-9]+}}, ${{[0-9]+}}
17 ; 16: mult ${{[0-9]+}}, ${{[0-9]+}}
mulull.ll 16 ; 16: mult ${{[0-9]+}}, ${{[0-9]+}}
18 ; 16: mult ${{[0-9]+}}, ${{[0-9]+}}
mul.ll 12 ; 16: mult ${{[0-9]+}}, ${{[0-9]+}}
  /external/stlport/test/unit/
innerprod_test.cpp 31 static size_t mult(size_t a_, size_t b_) { function in class:InnerprodTest
69 size_t result=inner_product(v1.begin(), v1.end(), v2.begin(), (size_t)1, mult, add);
  /ndk/tests/device/test-gnustl-full/unit/
innerprod_test.cpp 31 static size_t mult(size_t a_, size_t b_) { function in class:InnerprodTest
69 size_t result=inner_product(v1.begin(), v1.end(), v2.begin(), (size_t)1, mult, add);
  /ndk/tests/device/test-stlport/unit/
innerprod_test.cpp 31 static size_t mult(size_t a_, size_t b_) { function in class:InnerprodTest
69 size_t result=inner_product(v1.begin(), v1.end(), v2.begin(), (size_t)1, mult, add);
  /external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/fix/source/
lattice_mips.c 151 "mult $ac0, %[r0], %[input0] \n\t"
152 "mult $ac1, %[r1], %[input0] \n\t"
153 "mult $ac2, %[r2], %[input0] \n\t"
154 "mult $ac3, %[r3], %[input0] \n\t"
167 "mult $ac0, %[t0], %[input2] \n\t"
168 "mult $ac1, %[t1], %[input2] \n\t"
169 "mult $ac2, %[t2], %[input2] \n\t"
170 "mult $ac3, %[t3], %[input2] \n\t"
177 "mult $ac0, %[r0], %[input1] \n\t"
178 "mult $ac1, %[r1], %[input1] \n\t
    [all...]
  /development/perftests/panorama/feature_stab/db_vlvm/
db_utilities_linalg.h 36 inline void db_MultiplyScalar6(double A[6],double mult)
38 (*A++) *= mult; (*A++) *= mult; (*A++) *= mult; (*A++) *= mult; (*A++) *= mult;
39 (*A++) *= mult;
44 inline void db_MultiplyScalar7(double A[7],double mult)
46 (*A++) *= mult; (*A++) *= mult; (*A++) *= mult; (*A++) *= mult; (*A++) *= mult
    [all...]
db_utilities_camera.h 126 double s,mult; local
129 mult=sqrt(1.0/(s?s:1));
130 R[0]*=mult; R[1]*=mult; R[2]*=mult;
136 mult=sqrt(1.0/(s?s:1));
137 R[3]*=mult; R[4]*=mult; R[5]*=mult;
  /cts/tests/tests/media/src/android/media/cts/
PresentationSyncTest.java 127 * If mult is -1, the test runs in "training" mode, rendering frames as quickly as
132 private long runThroughputTest(InputSurface output, long frameTimeNsec, float mult) {
133 Log.d(TAG, "runThroughputTest: " + mult);
146 drawFrame(0, mult);
155 if (mult != -1.0f) {
156 showNsec = startNsec + (long) (frameNum * frameTimeNsec * mult);
158 drawFrame(frameNum, mult);
168 if (mult != -1) {
170 long expectedNsec = (long) (frameTimeNsec * FRAME_COUNT * mult);
176 "): mult=" + mult + ": expected=" + expectedNsec
    [all...]
  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Quad.java 67 return new Quad(p0.mult(x, y), p1.mult(x, y), p2.mult(x, y), p3.mult(x, y));
Rectangle.java 88 return new Rectangle(p0.mult(x, y), p1.mult(x, y), p2.mult(x, y), p3.mult(x, y));
  /external/antlr/antlr-3.4/runtime/Perl5/examples/simplecalc/
SimpleCalc.g 7 MULT = '*' ;
17 term : factor ( ( MULT | DIV ) factor )* ;
  /external/clang/test/Driver/
B-opt.c 21 // RUN: | FileCheck --check-prefix=CHECK-B-OPT-MULT %s
22 // CHECK-B-OPT-MULT: "{{.*}}/Inputs/B_opt_tree/dir3{{/|\\}}prefix-ld"
  /external/eigen/bench/btl/libs/gmm/
gmm_interface.hh 82 gmm::mult(A,B, X);
86 gmm::mult(gmm::transposed(A),gmm::transposed(B), X);
90 gmm::mult(gmm::transposed(A),A, X);
94 gmm::mult(A,gmm::transposed(A), X);
98 gmm::mult(A,B,X);
102 gmm::mult(gmm::transposed(A),B,X);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ColorFiltersMutateActivity.java 86 ObjectAnimator mult = ObjectAnimator.ofInt(this, "lightMul", 0x0060ffff); local
87 mult.setEvaluator(new ArgbEvaluator());
88 mult.setDuration(1000);
89 mult.setRepeatCount(ObjectAnimator.INFINITE);
90 mult.setRepeatMode(ObjectAnimator.REVERSE);
91 mult.start();
  /external/chromium_org/third_party/libwebp/dsp/
alpha_processing.c 26 static uint32_t Mult(uint8_t x, uint32_t mult) {
27 const uint32_t v = (x * mult + HALF) >> MFIX;
148 out |= Mult(argb >> 0, scale) << 0;
149 out |= Mult(argb >> 8, scale) << 8;
150 out |= Mult(argb >> 16, scale) << 16;
167 ptr[x] = Mult(ptr[x], scale);
229 const uint32_t mult = MULTIPLIER(a); local
230 rgb[4 * i + 0] = PREMULTIPLY(rgb[4 * i + 0], mult);
231 rgb[4 * i + 1] = PREMULTIPLY(rgb[4 * i + 1], mult);
266 const uint32_t mult = MULTIPLIER(a); local
    [all...]
  /external/webp/src/dsp/
alpha_processing.c 26 static uint32_t Mult(uint8_t x, uint32_t mult) {
27 const uint32_t v = (x * mult + HALF) >> MFIX;
148 out |= Mult(argb >> 0, scale) << 0;
149 out |= Mult(argb >> 8, scale) << 8;
150 out |= Mult(argb >> 16, scale) << 16;
167 ptr[x] = Mult(ptr[x], scale);
229 const uint32_t mult = MULTIPLIER(a); local
230 rgb[4 * i + 0] = PREMULTIPLY(rgb[4 * i + 0], mult);
231 rgb[4 * i + 1] = PREMULTIPLY(rgb[4 * i + 1], mult);
266 const uint32_t mult = MULTIPLIER(a); local
    [all...]
  /external/e2fsprogs/ext2ed/
inode_com.c 29 long inode_num,mult=1; local
36 mult=atol (buffer);
51 if (entry_num-mult+1>0) {
52 device_offset-=sizeof (struct ext2_inode)*mult;
53 entry_num-=mult;
76 long inode_num,mult=1; local
83 mult=atol (buffer);
99 if (entry_num+mult-1<last_entry) {
100 device_offset+=sizeof (struct ext2_inode)*mult;
101 entry_num+=mult;
    [all...]
  /external/chromium_org/third_party/icu/source/test/perf/perldriver/
Format.pm 57 my $mult = shift;
61 my $result = formatSigDig($sigdig, $a*$mult);
63 my $d = formatSigDig($sigdig, $delta*$mult);
95 my @MULT = (1 , 1e3, 1e6, 1e9);
101 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT);
103 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];
  /external/icu/icu4c/source/test/perf/perldriver/
Format.pm 57 my $mult = shift;
61 my $result = formatSigDig($sigdig, $a*$mult);
63 my $d = formatSigDig($sigdig, $delta*$mult);
95 my @MULT = (1 , 1e3, 1e6, 1e9);
101 ++$i while ($a*$MULT[$i] < 1 && $i < @MULT);
103 formatNumber($sigdig, $MULT[$i], $a, $delta) . ' ' . $SUFF[$i];

Completed in 232 milliseconds

12 3 4 5 6 7 8 91011>>