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

1 2 3 4 56 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
dtx.c 204 log_en = mult(log_en, 21504);
237 log_en = mult(log_en, 12483);
272 gain = mult(level, gain); /* gain in Q15 */
281 tmp = mult(exc2[i], gain); /* Q0 * Q15 */
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/rtasm/
rtasm_ppc.h 108 /** vector float mult add: vD = vA * vB + vC */
112 /** vector float negative mult subtract: vD = vA - vB * vC */
  /external/llvm/test/CodeGen/Mips/
mips64instrs.ll 93 ; ACCMULDIV: mult ${{[45]}}, ${{[45]}}
104 ; ACCMULDIV: mult ${{[45]}}, ${{[45]}}
  /external/llvm/test/MC/Mips/mips1/
valid.s 67 mult $sp,$s4
68 mult $sp,$v0
  /external/llvm/test/MC/Mips/mips64r6/
invalid-mips64.s 41 mult $sp,$s4 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
42 mult $sp,$v0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/mesa3d/src/gallium/auxiliary/rtasm/
rtasm_ppc.h 108 /** vector float mult add: vD = vA * vB + vC */
112 /** vector float negative mult subtract: vD = vA - vB * vC */
  /external/valgrind/main/none/tests/mips32/
MIPS32int.stdout.exp-mips32-BE 459 MULT
460 mult $t0, $t1 :: rs 0x31415927 rt 0xffffffff HI 0xffffffff LO 0xcebea6d9
461 mult $t0, $t1 :: rs 0x31415927 rt 0xee00ee00 HI 0xfc899586 LO 0x02e24200
462 mult $t0, $t1 :: rs 0x00000000 rt 0x000000ff HI 0x00000000 LO 0x00000000
463 mult $t0, $t1 :: rs 0xffffffff rt 0x00000000 HI 0x00000000 LO 0x00000000
464 mult $t0, $t1 :: rs 0x00000000 rt 0x00000001 HI 0x00000000 LO 0x00000000
465 mult $t0, $t1 :: rs 0x00000000 rt 0x00000000 HI 0x00000000 LO 0x00000000
466 mult $t0, $t1 :: rs 0x80000000 rt 0xffffffff HI 0x00000000 LO 0x80000000
467 mult $t0, $t1 :: rs 0x80000000 rt 0x80000000 HI 0x40000000 LO 0x00000000
468 mult $t0, $t1 :: rs 0x7fffffff rt 0x00000000 HI 0x00000000 LO 0x00000000
    [all...]
MIPS32int.stdout.exp-mips32-LE 459 MULT
460 mult $t0, $t1 :: rs 0x31415927 rt 0xffffffff HI 0xffffffff LO 0xcebea6d9
461 mult $t0, $t1 :: rs 0x31415927 rt 0xee00ee00 HI 0xfc899586 LO 0x02e24200
462 mult $t0, $t1 :: rs 0x00000000 rt 0x000000ff HI 0x00000000 LO 0x00000000
463 mult $t0, $t1 :: rs 0xffffffff rt 0x00000000 HI 0x00000000 LO 0x00000000
464 mult $t0, $t1 :: rs 0x00000000 rt 0x00000001 HI 0x00000000 LO 0x00000000
465 mult $t0, $t1 :: rs 0x00000000 rt 0x00000000 HI 0x00000000 LO 0x00000000
466 mult $t0, $t1 :: rs 0x80000000 rt 0xffffffff HI 0x00000000 LO 0x80000000
467 mult $t0, $t1 :: rs 0x80000000 rt 0x80000000 HI 0x40000000 LO 0x00000000
468 mult $t0, $t1 :: rs 0x7fffffff rt 0x00000000 HI 0x00000000 LO 0x00000000
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d8_31pf.cpp 48 (2) Added includes of mult.h, shl.h, shr.h, add.h, sub.h, negate.h,
189 mult(
203 mult(
230 mult(
248 mult(
433 mult(
442 mult(
478 mult(
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);
  /development/perftests/panorama/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/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/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_lib.c 92 void BN_set_params(int mult, int high, int low, int mont)
94 if (mult >= 0)
96 if (mult > (int)(sizeof(int)*8)-1)
97 mult=sizeof(int)*8-1;
98 bn_limit_bits=mult;
99 bn_limit_num=1<<mult;
  /external/e2fsprogs/ext2ed/
general_com.c 204 long mult=1; local
223 mult=file_system_info.block_size;
233 mult=current_type->length;
247 new_offset=device_offset+atol (new_offset_buffer+1)*mult;
255 new_offset=device_offset-atol (new_offset_buffer+1)*mult;
260 new_offset=atol (new_offset_buffer)*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/openssl/crypto/bn/
bn_lib.c 92 void BN_set_params(int mult, int high, int low, int mont)
94 if (mult >= 0)
96 if (mult > (int)(sizeof(int)*8)-1)
97 mult=sizeof(int)*8-1;
98 bn_limit_bits=mult;
99 bn_limit_num=1<<mult;
  /external/qemu/hw/net/
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
  /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 1417 QemudMultiplexer* mult = opaque; local
    [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/chromium_org/third_party/webrtc/modules/audio_processing/aec/
aec_core.c 497 aec->mult = (short)aec->sampFreq / 16000;
499 aec->mult = (short)aec->sampFreq / 8000;
663 // 1) At most we process |aec->mult|+1 partitions in 10 ms. Make sure we
668 WebRtcAec_MoveFarReadPtr(aec, -(aec->mult + 1));
710 const int kMsPerBlock = PART_LEN / (self->mult * 8);
835 const int noiseInitBlocks = 500 * aec->mult;
    [all...]

Completed in 64 milliseconds

1 2 3 4 56 7 8 91011>>