Home
last modified time | relevance | path

Searched refs:tmp16 (Results 1 – 25 of 132) sorted by relevance

123456

/external/webrtc/src/common_audio/vad/
Dvad_gmm.c34 int16_t tmp16, inv_std, inv_std2, exp_value = 0; in WebRtcVad_GaussianProbability() local
44 tmp16 = (inv_std >> 2); // Q10 -> Q8. in WebRtcVad_GaussianProbability()
46 inv_std2 = (int16_t) WEBRTC_SPL_MUL_16_16_RSFT(tmp16, tmp16, 2); in WebRtcVad_GaussianProbability()
51 tmp16 = (input << 3); // Q4 -> Q7 in WebRtcVad_GaussianProbability()
52 tmp16 = tmp16 - mean; // Q7 - Q7 = Q7 in WebRtcVad_GaussianProbability()
57 *delta = (int16_t) WEBRTC_SPL_MUL_16_16_RSFT(inv_std2, tmp16, 10); in WebRtcVad_GaussianProbability()
62 tmp32 = WEBRTC_SPL_MUL_16_16_RSFT(*delta, tmp16, 9); in WebRtcVad_GaussianProbability()
70 tmp16 = (int16_t) WEBRTC_SPL_MUL_16_16_RSFT(kLog2Exp, (int16_t) tmp32, 12); in WebRtcVad_GaussianProbability()
71 tmp16 = -tmp16; in WebRtcVad_GaussianProbability()
72 exp_value = (0x0400 | (tmp16 & 0x03FF)); in WebRtcVad_GaussianProbability()
[all …]
Dvad_core.c338 WebRtc_Word16 tmp16, tmp16_1, tmp16_2; in WebRtcVad_GmmProbability() local
538 tmp16 = WEBRTC_SPL_LSHIFT_W16(k+5, 7); in WebRtcVad_GmmProbability()
539 if (nmk3 < tmp16) in WebRtcVad_GmmProbability()
540 nmk3 = tmp16; in WebRtcVad_GmmProbability()
541 tmp16 = WEBRTC_SPL_LSHIFT_W16(72+k-n, 7); in WebRtcVad_GmmProbability()
542 if (nmk3 > tmp16) in WebRtcVad_GmmProbability()
543 nmk3 = tmp16; in WebRtcVad_GmmProbability()
555 tmp16 = (WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT(delt, in WebRtcVad_GmmProbability()
558 smk2 = smk + (tmp16 >> 1); // Q7 + (Q14 * Q15 >> 22) in WebRtcVad_GmmProbability()
570 tmp16 = WEBRTC_SPL_RSHIFT_W16((smk + 4), 3); in WebRtcVad_GmmProbability()
[all …]
Dvad_filterbank.c85 int16_t tmp16 = 0; in WebRtcVad_Allpass() local
91 tmp16 = (int16_t) WEBRTC_SPL_RSHIFT_W32(tmp32, 16); in WebRtcVad_Allpass()
92 *out_vector++ = tmp16; in WebRtcVad_Allpass()
94 state32 = in32 - WEBRTC_SPL_MUL_16_16(filter_coefficients, tmp16); in WebRtcVad_Allpass()
/external/llvm/test/Transforms/InstCombine/
D2006-12-15-Range-Test.ll11 define i1 @print_pgm_cond_true(i32 %tmp12.reload, i32* %tmp16.out) {
16 store i32 %tmp16, i32* %tmp16.out
20 store i32 %tmp16, i32* %tmp16.out
25 %tmp16 = load i32, i32* %tmp15 ; <i32> [#uses=4]
26 %tmp18 = icmp slt i32 %tmp16, -31 ; <i1> [#uses=1]
27 %tmp21 = icmp sgt i32 %tmp16, 31 ; <i1> [#uses=1]
D2007-12-18-AddSelCmpSub.ll6 %tmp16 = icmp slt i32 %tmp15, 0 ; <i1> [#uses=1]
7 %smax = select i1 %tmp16, i32 0, i32 %tmp15 ; <i32> [#uses=1]
16 %tmp16 = icmp slt i32 %tmp15, 0 ; <i1> [#uses=1]
17 %smax = select i1 %tmp16, i32 0, i32 %tmp15 ; <i32> [#uses=1]
25 %tmp16 = icmp slt i32 %a, 0 ; <i1> [#uses=1]
26 %smax = select i1 %tmp16, i32 0, i32 %tmp15 ; <i32> [#uses=1]
/external/llvm/test/Transforms/LoopUnroll/
Dshifted-tripcount.ll6 ; CHECK: %i.013 = phi i64 [ 0, %entry ], [ %tmp16.1, %for.body ]
15 %i.013 = phi i64 [ %tmp16, %for.body ], [ 0, %entry ] ; <i64> [#uses=2]
17 %tmp16 = add i64 %i.013, 1 ; <i64> [#uses=3]
18 %arrayidx = getelementptr double, double* %p, i64 %tmp16 ; <double*> [#uses=1]
23 %exitcond = icmp eq i64 %tmp16, %mul10 ; <i1> [#uses=1]
/external/webrtc/src/modules/audio_processing/ns/
Dnsx_core_neon.c27 int16_t tmp16 = WebRtcSpl_MaxValueW16(inst->noiseEstLogQuantile + offset, in UpdateNoiseEstimateNeon() local
32 tmp16, in UpdateNoiseEstimateNeon()
83 tmp16 = (int16_t) WEBRTC_SPL_RSHIFT_W32(tmp32no2, 21); in UpdateNoiseEstimateNeon()
84 tmp16 -= 21;// shift 21 to get result in Q0 in UpdateNoiseEstimateNeon()
85 tmp16 += (int16_t) inst->qNoise; //shift to get result in Q(qNoise) in UpdateNoiseEstimateNeon()
86 if (tmp16 < 0) { in UpdateNoiseEstimateNeon()
87 tmp32no1 = WEBRTC_SPL_RSHIFT_W32(tmp32no1, -tmp16); in UpdateNoiseEstimateNeon()
89 tmp32no1 = WEBRTC_SPL_LSHIFT_W32(tmp32no1, tmp16); in UpdateNoiseEstimateNeon()
101 int16_t log2, tabind, logval, tmp16, tmp16no1, tmp16no2; in NoiseEstimationNeon() local
269 tmp16 = (int16_t)WEBRTC_SPL_MUL_16_16_RSFT(delta, countDiv, 14); in NoiseEstimationNeon()
[all …]
Dnsx_core.c442 WebRtc_Word16 tmp16 = 0; in UpdateNoiseEstimate() local
447 tmp16 = WebRtcSpl_MaxValueW16(inst->noiseEstLogQuantile + offset, in UpdateNoiseEstimate()
451 kExp2Const, tmp16, 21); in UpdateNoiseEstimate()
458 tmp16 = (WebRtc_Word16) WEBRTC_SPL_RSHIFT_W32(tmp32no2, 21); in UpdateNoiseEstimate()
459 tmp16 -= 21;// shift 21 to get result in Q0 in UpdateNoiseEstimate()
460 tmp16 += (WebRtc_Word16) inst->qNoise; //shift to get result in Q(qNoise) in UpdateNoiseEstimate()
461 if (tmp16 < 0) { in UpdateNoiseEstimate()
462 tmp32no1 = WEBRTC_SPL_RSHIFT_W32(tmp32no1, -tmp16); in UpdateNoiseEstimate()
464 tmp32no1 = WEBRTC_SPL_LSHIFT_W32(tmp32no1, tmp16); in UpdateNoiseEstimate()
477 WebRtc_Word16 log2, tabind, logval, tmp16, tmp16no1, tmp16no2; in NoiseEstimationC() local
[all …]
/external/llvm/test/Transforms/Inline/
Dnested-inline.ll38 %tmp16 = and i32 %X, 8 ; <i32> [#uses=1]
39 %tmp16.upgrd.4 = icmp eq i32 %tmp16, 0 ; <i1> [#uses=1]
40 br i1 %tmp16.upgrd.4, label %UnifiedReturnBlock, label %cond_true17
81 %tmp16 = and i32 %X, 8 ; <i32> [#uses=1]
82 %tmp16.upgrd.4 = icmp eq i32 %tmp16, 0 ; <i1> [#uses=1]
83 br i1 %tmp16.upgrd.4, label %UnifiedReturnBlock, label %cond_true17
/external/webrtc/src/modules/audio_processing/aecm/
Daecm_core.c566 WebRtc_Word16 tmp16 = PART_LEN1; in WebRtcAecm_InitCore() local
637 tmp16--; in WebRtcAecm_InitCore()
638 tmp32 -= (WebRtc_Word32)((tmp16 << 1) + 1); in WebRtcAecm_InitCore()
868 WebRtc_Word16 tmp16; in WebRtcAecm_CalcEnergies() local
882 tmp16 = kLogLowValue; in WebRtcAecm_CalcEnergies()
890 tmp16 += WEBRTC_SPL_LSHIFT_W16((31 - zeros), 8) + frac; in WebRtcAecm_CalcEnergies()
891 tmp16 -= WEBRTC_SPL_LSHIFT_W16(aecm->dfaNoisyQDomain, 8); in WebRtcAecm_CalcEnergies()
893 aecm->nearLogEnergy[0] = tmp16; in WebRtcAecm_CalcEnergies()
905 tmp16 = kLogLowValue; in WebRtcAecm_CalcEnergies()
912 tmp16 += WEBRTC_SPL_LSHIFT_W16((31 - zeros), 8) + frac; in WebRtcAecm_CalcEnergies()
[all …]
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
Dlpc_masking_model.c374 WebRtc_Word16 tmp16, chng1, chng2, chng3, chng4, tmp, chngQ, oldNrgQlog, pgQ, pg3; in WebRtcIsacfix_GetVars() local
422 tmp16=(WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(kExp2,pg3,13);/* Q13*Q10>>13 => Q10*/ in WebRtcIsacfix_GetVars()
423 if (tmp16<0) { in WebRtcIsacfix_GetVars()
424 tmp16_2 = (0x0400 | (tmp16 & 0x03FF)); in WebRtcIsacfix_GetVars()
425 …tmp16_1 = (WEBRTC_SPL_RSHIFT_W16((WebRtc_UWord16)(tmp16 ^ 0xFFFF), 10)-3); /* Gives result in Q14 … in WebRtcIsacfix_GetVars()
436 tmp16=(WebRtc_Word16)WEBRTC_SPL_MUL_16_16_RSFT_WITH_ROUND(kExp2,divVal,13);/* Q13*Q10>>13 => Q10*/ in WebRtcIsacfix_GetVars()
437 if (tmp16<0) { in WebRtcIsacfix_GetVars()
438 tmp16_2 = (0x0400 | (tmp16 & 0x03FF)); in WebRtcIsacfix_GetVars()
439 …tmp16_1 = (WEBRTC_SPL_RSHIFT_W16((WebRtc_UWord16)(tmp16 ^ 0xFFFF), 10)-3); /* Gives result in Q14 … in WebRtcIsacfix_GetVars()
557 WebRtc_Word16 tmp16,tmp16b; in WebRtcIsacfix_GetLpcCoef() local
[all …]
Ddecode_plc.c273 WebRtc_Word16 nLP, pLP, wNoisyLP, wPriodicLP, tmp16, minIdx; in WebRtcIsacfix_DecodePlcImpl() local
385 tmp16 = (WebRtc_Word16)((logVarIn<<1) - (4<<10) ); in WebRtcIsacfix_DecodePlcImpl()
387 if( tmp16 > 4096 ) in WebRtcIsacfix_DecodePlcImpl()
389 tmp16 -= 4096; in WebRtcIsacfix_DecodePlcImpl()
390 tmp16 = exp2_Q10_T( tmp16 ); in WebRtcIsacfix_DecodePlcImpl()
391 tmp16 >>= 6; in WebRtcIsacfix_DecodePlcImpl()
394 tmp16 = exp2_Q10_T( tmp16 )>>10; in WebRtcIsacfix_DecodePlcImpl()
396 (ISACdec_obj->plcstr_obj).std = tmp16 - 4; in WebRtcIsacfix_DecodePlcImpl()
Dpitch_estimator.c72 WebRtc_Word16 t16, tmp16, tmp16_1; in Intrp1DQ8() local
101 tmp16 = tmp16_1-t16; in Intrp1DQ8()
102 *fy = WEBRTC_SPL_MUL_16_32_RSFT15(tmp16, fx[0]); /* (Q14 * Q8 >>15)/2 = Q8 */ in Intrp1DQ8()
105 tmp16 = 16384-tmp16_1; /* 1 in Q14 - Q14 */ in Intrp1DQ8()
106 *fy += WEBRTC_SPL_MUL_16_32_RSFT14(tmp16, fx[1]);/* Q14 * Q8 >> 14 = Q8 */ in Intrp1DQ8()
109 tmp16 = tmp16_1+t16; in Intrp1DQ8()
110 *fy += WEBRTC_SPL_MUL_16_32_RSFT15(tmp16, fx[2]);/* (Q14 * Q8 >>15)/2 = Q8 */ in Intrp1DQ8()
/external/libvpx/libvpx/vp9/common/mips/dspr2/
Dvp9_intrapred16_dspr2.c20 int32_t tmp9, tmp10, tmp11, tmp12, tmp13, tmp14, tmp15, tmp16; in vp9_h_predictor_16x16_dspr2() local
159 [tmp15] "=&r" (tmp15), [tmp16] "=&r" (tmp16) in vp9_h_predictor_16x16_dspr2()
/external/llvm/test/Transforms/ObjCARC/
Dretain-block-side-effects.ll7 ; CHECK: %tmp16 = call i8* @objc_retainBlock(i8* %tmp15) [[NUW:#[0-9]+]]
8 ; CHECK: %tmp17 = bitcast i8* %tmp16 to void ()*
30 %tmp16 = call i8* @objc_retainBlock(i8* %tmp15) nounwind
31 %tmp17 = bitcast i8* %tmp16 to void ()*
/external/llvm/test/CodeGen/ARM/
D2011-08-29-SchedCycle.ll38 %tmp16 = sub i64 0, %tmp13
39 %tmp19 = and i64 %tmp16, 63
41 %tmp22 = and i64 %tmp16, -272346829004752
D2011-12-19-sjlj-clobber.ll40 …%tmp16 = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__objc_personality_v0 to i8*)
42 %tmp17 = extractvalue { i8*, i32 } %tmp16, 0
44 %tmp18 = extractvalue { i8*, i32 } %tmp16, 1
/external/libpng/contrib/pngminus/
Dpnm2png.c216 png_uint_32 tmp16; in pnm2png() local
397 tmp16 = get_value (pnm_file, bit_depth); in pnm2png()
398 *pix_ptr = (png_byte) ((tmp16 >> 8) & 0xFF); in pnm2png()
400 *pix_ptr = (png_byte) (tmp16 & 0xFF); in pnm2png()
414 tmp16 = get_value (alpha_file, bit_depth); in pnm2png()
415 *pix_ptr++ = (png_byte) ((tmp16 >> 8) & 0xFF); in pnm2png()
416 *pix_ptr++ = (png_byte) (tmp16 & 0xFF); in pnm2png()
/external/webrtc/src/modules/audio_processing/agc/
Ddigital_agc.c81 WebRtc_Word16 i, tmp16, tmp16no1; in WebRtcAgc_CalculateGainTable() local
142 tmp16 = (WebRtc_Word16)WEBRTC_SPL_MUL_16_16(kCompRatio - 1, i - 1); // Q0 in WebRtcAgc_CalculateGainTable()
143 tmp32 = WEBRTC_SPL_MUL_16_U16(tmp16, kLog10_2) + 1; // Q14 in WebRtcAgc_CalculateGainTable()
238 tmp16 = WEBRTC_SPL_LSHIFT_W16(2, 14) - constLinApprox; in WebRtcAgc_CalculateGainTable()
240 tmp32no2 = WEBRTC_SPL_MUL_32_16(tmp32no2, tmp16); in WebRtcAgc_CalculateGainTable()
245 tmp16 = constLinApprox - WEBRTC_SPL_LSHIFT_W16(1, 14); in WebRtcAgc_CalculateGainTable()
246 tmp32no2 = WEBRTC_SPL_MUL_32_16(fracPart, tmp16); in WebRtcAgc_CalculateGainTable()
670 WebRtc_Word16 k, subfr, tmp16; in WebRtcAgc_ProcessVad() local
778 tmp16 = WEBRTC_SPL_LSHIFT_W16(3, 12); in WebRtcAgc_ProcessVad()
779 tmp32 = WEBRTC_SPL_MUL_16_16(tmp16, (dB - state->meanLongTerm)); in WebRtcAgc_ProcessVad()
/external/llvm/test/CodeGen/X86/
Dfp-stack-compare-cmov.ll8 %tmp16 = fcmp olt float %tmp, 0.000000e+00
10 %iftmp.2.0 = select i1 %tmp16, float %tmp20, float %tmp
Dfp-stack-compare.ll10 %tmp16 = fcmp olt float %tmp, 0.000000e+00
12 %iftmp.2.0 = select i1 %tmp16, float %tmp20, float %tmp
Dx86-64-sret-return.ll40 …%tmp16 = getelementptr %struct.foo, %struct.foo* %agg.result, i32 0, i32 0 ; <[4 x i64]*> [#uses=…
42 %tmp18 = getelementptr [4 x i64], [4 x i64]* %tmp16, i32 0, i32 0 ; <i64*> [#uses=1]
46 %tmp21 = getelementptr [4 x i64], [4 x i64]* %tmp16, i32 0, i32 1 ; <i64*> [#uses=1]
50 %tmp24 = getelementptr [4 x i64], [4 x i64]* %tmp16, i32 0, i32 2 ; <i64*> [#uses=1]
54 %tmp27 = getelementptr [4 x i64], [4 x i64]* %tmp16, i32 0, i32 3 ; <i64*> [#uses=1]
D2007-10-14-CoalescerCrash.ll14 %tmp16 = load i64, i64* null, align 8 ; <i64> [#uses=1]
18 %tmp2526.cast = and i64 %tmp16, 4294967295 ; <i64> [#uses=1]
/external/llvm/test/Analysis/ScalarEvolution/
D2008-06-12-BinomialInt64.ll10 %i.02 = phi i32 [ %tmp16, %bb10 ], [ 0, %entry ] ; <i32> [#uses=1]
14 %tmp16 = add i32 %i.02, 1 ; <i32> [#uses=2]
15 %tmp20 = icmp slt i32 %tmp16, 0 ; <i1> [#uses=1]
/external/llvm/test/Bitcode/
Dmetadata-2.ll40 %tmp16 = and i32 %tmp14, 252645135 ; <i32> [#uses=2]
41 %tmp18 = lshr i32 %tmp16, 8 ; <i32> [#uses=1]
42 %tmp20 = add i32 %tmp18, %tmp16 ; <i32> [#uses=1]
63 %tmp16 = and i32 %tmp15, 252645135 ; <i32> [#uses=1]
66 %tmp20 = or i32 %tmp16, %tmp19 ; <i32> [#uses=2]

123456