/frameworks/av/media/libstagefright/codecs/avc/enc/src/ |
findhalfpel.cpp | 139 int32 tmp32; local 155 tmp32 = *ref++; 157 tmp32 |= (tmp8 << 8); 159 tmp32 |= (tmp8 << 16); 161 tmp32 |= (tmp8 << 24); 162 *((uint32*)(dst += 4)) = tmp32; 218 tmp32 = a + f - 5 * (b + e) + 20 * (c + d); 219 *dst_16++ = tmp32; 220 tmp32 = (tmp32 + 16) >> 5 447 int32 tmp32; local [all...] |
/external/webrtc/webrtc/common_audio/signal_processing/ |
lpc_to_refl_coef.c | 25 int32_t tmp32[SPL_LPC_TO_REFL_COEF_MAX_AR_MODEL_ORDER]; local 42 tmp32[k] = (a16[k] << 16) - (k16[m] * a16[m - k + 1] << 1); 44 tmp32[k] = WebRtcSpl_DivW32W16(tmp32[k], tmp_inv_denom16); //Q28/Q15 = Q13 49 a16[k] = (int16_t)(tmp32[k] >> 1); // Q13>>1 => Q12 52 tmp32[m] = WEBRTC_SPL_SAT(8191, tmp32[m], -8191); 53 k16[m - 1] = (int16_t)WEBRTC_SPL_LSHIFT_W32(tmp32[m], 2); //Q13<<2 => Q15
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
lattice.c | 31 multiplication between t32 and tmp32, done in two ways: 32 1) Using (int32_t) (((float)(tmp32))*((float)(tmp32b))/65536.0); 110 int32_t tmp32, tmp32b; local 159 tmp32 = WEBRTC_SPL_MUL_16_32_RSFT15(sthQ15[i-1], stateGQ15[i-1]);//Q15*Q15>>15 = Q15 160 tmp32b= fQtmp + tmp32; //Q15+Q15=Q15 161 tmp32 = inv_cthQ16[i-1]; //Q16 162 t16a = (int16_t)(tmp32 >> 16); 163 t16b = (int16_t)(tmp32 - (t16a << 16)); 165 tmp32 = LATTICE_MUL_32_32_RSFT16(t16a, t16b, tmp32b); 166 fQtmp = tmp32; // Q1 226 int32_t tmp32; local [all...] |
lattice_c.c | 34 int32_t tmp32 = 0; local 39 tmp32 = (cth_Q15[k - 1] * tmpAR - sth_Q15[k - 1] * ar_g_Q0[k - 1] + 43 tmpAR = (int16_t)WebRtcSpl_SatW32ToW16(tmp32);
|
lpc_masking_model_mips.c | 25 int32_t tmp32 = 0, word32_high = 0, word32_low = 0, residual_energy = 0; local 45 "mul %[tmp32], %[tmp2], %[tmp2] \n\t" 48 "mult $ac0, %[tmp32], %[tmp_corr_c] \n\t" 55 : [tmp2] "=&r" (tmp2), [tmp3] "=&r" (tmp3), [tmp32] "=&r" (tmp32), 131 "mul %[tmp32], %[tmp3], %[tmp2] \n\t" 132 "sll %[tmp32], %[tmp32], 1 \n\t" 133 "mult $ac0, %[tmp32], %[tmp_corr_c] \n\t" 141 : [tmp2] "=&r" (tmp2), [tmp3] "=&r" (tmp3), [tmp32] "=&r" (tmp32) [all...] |
/external/llvm/test/CodeGen/PowerPC/ |
int-fp-conv-1.ll | 10 %tmp32 = add i64 %tmp282930, 0 ; <i64> [#uses=1] 11 ret i64 %tmp32
|
itofp128.ll | 12 %tmp32 = add i128 %tmp282930, 0 ; <i128> [#uses=1] 13 ret i128 %tmp32
|
/external/webrtc/webrtc/modules/audio_processing/agc/legacy/ |
digital_agc.c | 70 int32_t tmp32, tmp32no1, tmp32no2, numFIX, den, y32; local 142 tmp32 = WEBRTC_SPL_MUL_16_U16(tmp16, kLog10_2) + 1; // Q14 143 inLevel = WebRtcSpl_DivW32W16(tmp32, kCompRatio); // Q14 215 tmp32 = WEBRTC_SPL_MUL_16_U16(i - 1, kLog10_2); // Q14 216 tmp32 -= limiterLvl << 14; // Q14 217 y32 = WebRtcSpl_DivW32W16(tmp32 + 10, 20); 221 tmp32 = (y32 >> 1) * kLog10 + 4096; // in Q27 222 tmp32 >>= 13; // In Q14. 225 tmp32 = y32 * kLog10 + 8192; // in Q28 226 tmp32 >>= 14; // In Q14 303 int32_t out_tmp, tmp32; local 638 int32_t out, nrg, tmp32, tmp32b; local [all...] |
analog_agc.c | 118 int32_t nrg, max_nrg, sample, tmp32; local 147 tmp32 = (GAIN_TBL_LEN - 1) * tmp16; 149 targetGainIdx = tmp32 / tmp16; 503 int32_t tmp32 = 0; local 509 tmp32 += env[i]; 515 if (tmp32 < 500) 570 int32_t tmp32; local 586 tmp32 = vadThresh + 31 * stt->vadThreshold; 587 stt->vadThreshold = (int16_t)(tmp32 >> 5); 647 int32_t Rxx16w32, tmp32; local 1351 int32_t max_add, tmp32; local [all...] |
/external/webrtc/webrtc/common_audio/vad/ |
vad_gmm.c | 35 int32_t tmp32; local 40 tmp32 = (int32_t) 131072 + (int32_t) (std >> 1); 41 inv_std = (int16_t) WebRtcSpl_DivW32W16(tmp32, std); 59 // Calculate the exponent |tmp32| = (x - m)^2 / (2 * s^2), in Q10. Replacing 62 tmp32 = (*delta * tmp16) >> 9; 66 // ~= exp2(-log2(exp(1)) * |tmp32|). 67 if (tmp32 < kCompVar) { 68 // Calculate |tmp16| = log2(exp(1)) * |tmp32|, in Q10. 70 tmp16 = (int16_t)((kLog2Exp * tmp32) >> 12); 76 // Get |exp_value| = exp(-|tmp32|) in Q10 [all...] |
vad_sp.c | 69 int32_t tmp32 = 0; local 172 tmp32 = (alpha + 1) * self->mean_value[channel]; 173 tmp32 += (WEBRTC_SPL_WORD16_MAX - alpha) * current_median; 174 tmp32 += 16384; 175 self->mean_value[channel] = (int16_t) (tmp32 >> 15);
|
/external/llvm/test/Analysis/BasicAA/ |
2010-09-15-GEP-SignedArithmetic.ll | 10 %tmp32 = add i32 %tmp31, 30 11 %t.5 = getelementptr i32, i32* %tab, i32 %tmp32
|
/external/libopus/silk/fixed/ |
residual_energy_FIX.c | 52 opus_int32 tmp32; local 87 tmp32 = silk_LSHIFT32( gains[ i ], lz2 ); 90 tmp32 = silk_SMMUL( tmp32, tmp32 ); /* Q( 2 * lz2 - 32 )*/ 93 nrgs[ i ] = silk_SMMUL( tmp32, silk_LSHIFT32( nrgs[ i ], lz1 ) ); /* Q( nrgsQ[ i ] + lz1 + 2 * lz2 - 32 - 32 )*/
|
/external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/ |
cb_mem_energy_augmentation.c | 30 int32_t energy, tmp32; local 62 tmp32 = energy << *enShPtr; 63 *enPtr = (int16_t)(tmp32 >> 16);
|
cb_mem_energy.c | 41 int32_t energy, tmp32; local 56 tmp32 = energy << energyShifts[0]; 57 energyW16[0] = (int16_t)(tmp32 >> 16); 72 tmp32 = energy << energyShifts[base_size]; 73 energyW16[base_size] = (int16_t)(tmp32 >> 16);
|
/external/llvm/test/Transforms/InstCombine/ |
2007-11-25-CompatibleAttributes.ll | 8 %tmp32 = tail call i32 (i8* , ...) bitcast (i32 (i8*, ...) * @printf to i32 (i8* , ...) *)( i8* getelementptr ([4 x i8], [4 x i8]* @.str, i32 0, i32 0) , i32 0 ) nounwind ; <i32> [#uses=0]
|
/external/llvm/test/Analysis/CFLAliasAnalysis/ |
gep-signed-arithmetic.ll | 12 %tmp32 = add i32 %tmp31, 30 13 %t.5 = getelementptr i32, i32* %tab, i32 %tmp32
|
/external/llvm/test/CodeGen/X86/ |
2008-02-06-LoadFoldingBug.ll | 13 %tmp32 = fsub double -0.000000e+00, %tmp20 ; <double> [#uses=1] 17 store double %tmp32, double* %tmp40, align 8
|
mul-legalize.ll | 15 %tmp32 = icmp eq i64 %tmp7, 105553116266496 16 br i1 %tmp32, label %return, label %bb35
|
vec_set-4.ll | 20 %tmp32 = insertelement <16 x i8> %tmp30, i8 0, i32 14 ; <<16 x i8>> [#uses=1] 21 %tmp34 = insertelement <16 x i8> %tmp32, i8 0, i32 15 ; <<16 x i8>> [#uses=1]
|
/external/llvm/test/Object/Inputs/ |
shared.ll | 6 ; llc -mtriple=i386-linux-gnu shared.ll -filetype=obj -o tmp32.o -relocation-model=pic 7 ; ld -melf_i386 -shared tmp32.o -o shared-object-test.elf-i386 $LDARGS
|
/external/llvm/test/Transforms/IndVarSimplify/ |
polynomial-expand.ll | 21 %tmp32 = phi i32 [ %tmp37, %bb30 ], [ %tmp27, %bb24 ] ; <i32> [#uses=2] 22 %tmp33 = sext i32 %tmp32 to i64 ; <i64> [#uses=1] 25 %tmp37 = add nsw i32 %tmp32, -1 ; <i32> [#uses=1]
|
/external/llvm/test/CodeGen/ARM/ |
fast-isel-vaddd.ll | 17 %tmp32 = getelementptr inbounds %union.DV, %union.DV* %Ad, i32 0, i32 0 23 store <2 x double> %tmp33, <2 x double>* %tmp32, align 16
|
/external/webrtc/webrtc/modules/audio_processing/aecm/ |
aecm_core_mips.c | 1258 int32_t tmp32, tmp321, tnoise, tnoise1; local [all...] |
/external/webrtc/webrtc/modules/audio_processing/ns/ |
nsx_core_c.c | 31 int32_t invLrtFX, indPriorFX, tmp32, tmp32no1, tmp32no2, besselTmpFX32; local 62 tmp32 = (frac32 * frac32 * -43) >> 19; 63 tmp32 += ((int16_t)frac32 * 5412) >> 12; 64 frac32 = tmp32 + 37; 65 // tmp32 = log2(priorLocSnr[i]) 66 tmp32 = (int32_t)(((31 - zeros) << 12) + frac32) - (11 << 12); // Q12 67 logTmp = (tmp32 * 178) >> 8; // log2(priorLocSnr[i])*log(2)
|