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

1 2 34 5 6 7 8 910

  /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/llvm/test/MC/Mips/
mips-dsp-instructions.s 29 # CHECK: mult $ac3, $2, $3 # encoding: [0x00,0x43,0x18,0x18]
40 # CHECK: mult $2, $3 # encoding: [0x00,0x43,0x00,0x18]
77 mult $ac3, $2, $3
88 mult $2, $3
micromips-alu-instructions.s 37 # CHECK-EL: mult $9, $7 # encoding: [0xe9,0x00,0x3c,0x8b]
71 # CHECK-EB: mult $9, $7 # encoding: [0x00,0xe9,0x8b,0x3c]
103 mult $9, $7
  /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/llvm/test/MC/Mips/mips32r6/
invalid-mips2.s 15 mult $sp,$s4 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
16 mult $sp,$v0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /external/llvm/test/MC/Mips/mips64r6/
invalid-mips1.s 22 mult $sp,$s4 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
23 mult $sp,$v0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
invalid-mips2.s 18 mult $sp,$s4 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
19 mult $sp,$v0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
invalid-mips3.s 20 mult $sp,$s4 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
21 mult $sp,$v0 # CHECK: :[[@LINE]]:{{[0-9]+}}: error: instruction requires a CPU feature not currently enabled
  /frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/
Point.java 68 public Point mult(float x, float y) { method in class:Point
  /external/chromium_org/third_party/webrtc/modules/audio_processing/aecm/
echo_control_mobile.c 321 nBlocks10ms = nFrames / aecm->aecmCore->mult;
372 * aecm->aecmCore->mult) / (aecm->counter * 40), BUF_SIZE_FRAMES);
381 * aecm->aecmCore->mult) / 40, BUF_SIZE_FRAMES);
459 (kSampMsNb * aecm->aecmCore->mult);
660 nSampSndCard = msInSndCardBuf * kSampMsNb * aecm->aecmCore->mult;
710 nSampSndCard = aecm->msInSndCardBuf * kSampMsNb * aecm->aecmCore->mult;
713 if (delayNew > FAR_BUF_LEN - FRAME_LEN * aecm->aecmCore->mult)
  /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...]
  /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/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/eigen/Eigen/src/Geometry/
AlignedBox.h 148 Index mult = 1; local
151 if( mult & corner ) res[d] = m_max[d];
153 mult *= 2;
  /frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
oper_32b.c 105 L_32 = L_mac (L_32, mult (hi1, lo2), 1);
106 L_32 = L_mac (L_32, mult (lo1, hi2), 1);
134 L_32 = L_mac (L_32, mult (lo, n), 1);
  /external/chromium_org/third_party/icu/source/i18n/
digitlst.h 276 void mult(const DigitList &arg, UErrorCode &status);
  /external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
aec_core_internal.h 103 int mult; // sampling frequency multiple member in struct:AecCore
  /external/icu/icu4c/source/i18n/
digitlst.h 276 void mult(const DigitList &arg, UErrorCode &status);
  /external/tremolo/Tremolo/
codec_internal.h 125 int mult; /* 1 2 3 or 4 */ member in struct:__anon15266
floor1.c 141 info->mult=oggpack_read(opb,2)+1; /* only 1,2,3,4 legal now */
295 int quant_q=quant_look[info->mult-1];
386 int ly=fit_value[0]*info->mult;
392 hy*=info->mult;
  /external/webrtc/src/modules/audio_processing/aec/
aec_core.h 117 int mult; // sampling frequency multiple member in struct:__anon17136
  /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 */

Completed in 778 milliseconds

1 2 34 5 6 7 8 910