Home
last modified time | relevance | path

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

1234

/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* %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* %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 …]
/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/llvm/test/Transforms/ObjCARC/
Dretain-block-side-effects.ll7 ; CHECK: %tmp16 = call i8* @objc_retainBlock(i8* %tmp15) nounwind
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/Transforms/GVN/
D2011-06-01-NonLocalMemdepMiscompile.ll22 ; CHECK: %tmp16 = phi i8* [ getelementptr (i8* null, i64 undef), %bb10 ], [ null, %bb ]
25 ; CHECK: %tmp17.pre = load i8* %tmp16, align 1
49 %tmp16 = load i8** %tmp, align 8
50 %tmp17 = load i8* %tmp16, align 1
/external/libpng/contrib/pngminus/
Dpnm2png.c209 png_uint_32 tmp16; in pnm2png() local
354 tmp16 = get_value (pnm_file, bit_depth); in pnm2png()
355 *pix_ptr = (png_byte) ((tmp16 >> 8) & 0xFF); in pnm2png()
357 *pix_ptr = (png_byte) (tmp16 & 0xFF); in pnm2png()
371 tmp16 = get_value (alpha_file, bit_depth); in pnm2png()
372 *pix_ptr++ = (png_byte) ((tmp16 >> 8) & 0xFF); in pnm2png()
373 *pix_ptr++ = (png_byte) (tmp16 & 0xFF); in pnm2png()
/external/llvm/test/CodeGen/X86/
Dx86-64-sret-return.ll35 %tmp16 = getelementptr %struct.foo* %agg.result, i32 0, i32 0 ; <[4 x i64]*> [#uses=4]
37 %tmp18 = getelementptr [4 x i64]* %tmp16, i32 0, i32 0 ; <i64*> [#uses=1]
41 %tmp21 = getelementptr [4 x i64]* %tmp16, i32 0, i32 1 ; <i64*> [#uses=1]
45 %tmp24 = getelementptr [4 x i64]* %tmp16, i32 0, i32 2 ; <i64*> [#uses=1]
49 %tmp27 = getelementptr [4 x i64]* %tmp16, i32 0, i32 3 ; <i64*> [#uses=1]
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
D2007-10-14-CoalescerCrash.ll14 %tmp16 = load i64* null, align 8 ; <i64> [#uses=1]
18 %tmp2526.cast = and i64 %tmp16, 4294967295 ; <i64> [#uses=1]
D2007-10-04-AvoidEFLAGSCopy.ll9 %tmp16 = icmp eq i32 %tmp15, 10497 ; <i1> [#uses=1]
11 br i1 %tmp16, label %cond_true, label %cond_false
/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
D2010-06-11-vmovdrr-bitcast.ll13 %tmp16.i = bitcast i64 %tmp6 to <8 x i8> ; <<8 x i8>> [#uses=1]
15 …tail call void @llvm.arm.neon.vst2.v8i8(i8* %b, <8 x i8> %tmp16.i, <8 x i8> %tmp20.i, i32 1) nounw…
/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/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.ll39 %tmp16 = and i32 %tmp14, 252645135 ; <i32> [#uses=2]
40 %tmp18 = lshr i32 %tmp16, 8 ; <i32> [#uses=1]
41 %tmp20 = add i32 %tmp18, %tmp16 ; <i32> [#uses=1]
62 %tmp16 = and i32 %tmp15, 252645135 ; <i32> [#uses=1]
65 %tmp20 = or i32 %tmp16, %tmp19 ; <i32> [#uses=2]
/external/llvm/test/Transforms/ScalarRepl/
D2008-01-29-PromoteBug.ll13 %tmp16 = getelementptr [1 x %struct.T]* %s, i32 0, i32 0 ; <%struct.T*> [#uses=1]
14 %tmp17 = getelementptr %struct.T* %tmp16, i32 0, i32 1 ; <[3 x i8]*> [#uses=1]
/external/llvm/test/Analysis/BasicAA/
Dno-escape-call.ll16 %tmp16 = getelementptr i8* %tmp14, i32 10 ; <i8*> [#uses=1]
17 %tmp17 = load i8* %tmp16, align 1 ; <i8> [#uses=1]

1234