HomeSort by relevance Sort by last modified time
    Searched full:tmp32 (Results 1 - 25 of 56) sorted by null

1 2 3

  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
findhalfpel.cpp 152 int32 tmp32; local
169 tmp32 = *ref++;
171 tmp32 |= (tmp8 << 8);
173 tmp32 |= (tmp8 << 16);
175 tmp32 |= (tmp8 << 24);
176 *((uint32*)(dst += 4)) = tmp32;
232 tmp32 = a + f - 5 * (b + e) + 20 * (c + d);
233 *dst_16++ = tmp32;
234 tmp32 = (tmp32 + 16) >> 5
462 int32 tmp32; local
    [all...]
  /external/webrtc/src/common_audio/signal_processing/
lpc_to_refl_coef.c 25 WebRtc_Word32 tmp32[SPL_LPC_TO_REFL_COEF_MAX_AR_MODEL_ORDER]; local
42 tmp32[k] = WEBRTC_SPL_LSHIFT_W32((WebRtc_Word32)a16[k], 16)
45 tmp32[k] = WebRtcSpl_DivW32W16(tmp32[k], tmp_inv_denom16); //Q28/Q15 = Q13
50 a16[k] = (WebRtc_Word16)WEBRTC_SPL_RSHIFT_W32(tmp32[k], 1); //Q13>>1 => Q12
53 tmp32[m] = WEBRTC_SPL_SAT(8191, tmp32[m], -8191);
54 k16[m - 1] = (WebRtc_Word16)WEBRTC_SPL_LSHIFT_W32(tmp32[m], 2); //Q13<<2 => Q15
  /external/webrtc/src/modules/audio_processing/agc/
digital_agc.c 70 WebRtc_Word32 tmp32, tmp32no1, tmp32no2, numFIX, den, y32; local
143 tmp32 = WEBRTC_SPL_MUL_16_U16(tmp16, kLog10_2) + 1; // Q14
144 inLevel = WebRtcSpl_DivW32W16(tmp32, kCompRatio); // Q14
216 tmp32 = WEBRTC_SPL_MUL_16_U16(i - 1, kLog10_2); // Q14
217 tmp32 -= WEBRTC_SPL_LSHIFT_W32(limiterLvl, 14); // Q14
218 y32 = WebRtcSpl_DivW32W16(tmp32 + 10, 20);
222 tmp32 = WEBRTC_SPL_MUL(y32 >> 1, kLog10) + 4096; // in Q27
223 tmp32 = WEBRTC_SPL_RSHIFT_W32(tmp32, 13); // in Q14
226 tmp32 = WEBRTC_SPL_MUL(y32, kLog10) + 8192; // in Q2
311 WebRtc_Word32 out_tmp, tmp32; local
668 WebRtc_Word32 out, nrg, tmp32, tmp32b; local
    [all...]
analog_agc.c 116 WebRtc_Word32 nrg, max_nrg, sample, tmp32; local
209 tmp32 = WEBRTC_SPL_MUL_16_16(GAIN_TBL_LEN - 1, tmp16);
211 targetGainIdx = (WebRtc_UWord16)WEBRTC_SPL_DIV(tmp32, tmp16);
231 tmp32 = WEBRTC_SPL_MUL_16_U16(in_mic[i], gain);
232 sample = WEBRTC_SPL_RSHIFT_W32(tmp32, 12);
247 tmp32 = WEBRTC_SPL_MUL_16_U16(in_mic_H[i], gain);
248 sample = WEBRTC_SPL_RSHIFT_W32(tmp32, 12);
618 WebRtc_Word32 tmp32 = 0; local
624 tmp32 += env[i];
630 if (tmp32 < 500
685 WebRtc_Word32 tmp32; local
763 WebRtc_Word32 Rxx16w32, tmp32; local
1529 WebRtc_Word32 max_add, tmp32; local
    [all...]
  /external/llvm/test/CodeGen/PowerPC/
int-fp-conv-1.ll 9 %tmp32 = add i64 %tmp282930, 0 ; <i64> [#uses=1]
10 ret i64 %tmp32
itofp128.ll 12 %tmp32 = add i128 %tmp282930, 0 ; <i128> [#uses=1]
13 ret i128 %tmp32
  /external/webrtc/src/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 = WEBRTC_SPL_MUL_16_16_RSFT(*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) WEBRTC_SPL_MUL_16_16_RSFT(kLog2Exp, (int16_t) tmp32, 12);
76 // Get |exp_value| = exp(-|tmp32|) in Q10
    [all...]
vad_filterbank.c 43 int32_t tmp32 = 0; local
56 tmp32 = (int32_t) WEBRTC_SPL_MUL_16_16(kHpZeroCoefs[0], (*in_ptr));
57 tmp32 += (int32_t) WEBRTC_SPL_MUL_16_16(kHpZeroCoefs[1], filter_state[0]);
58 tmp32 += (int32_t) WEBRTC_SPL_MUL_16_16(kHpZeroCoefs[2],
64 tmp32 -= (int32_t) WEBRTC_SPL_MUL_16_16(kHpPoleCoefs[1],
66 tmp32 -= (int32_t) WEBRTC_SPL_MUL_16_16(kHpPoleCoefs[2], filter_state[3]);
68 filter_state[2] = (int16_t) WEBRTC_SPL_RSHIFT_W32 (tmp32, 14);
86 int32_t tmp32 = 0, in32 = 0; local
90 tmp32 = state32 + WEBRTC_SPL_MUL_16_16(filter_coefficients, (*in_vector));
91 tmp16 = (int16_t) WEBRTC_SPL_RSHIFT_W32(tmp32, 16)
    [all...]
vad_sp.c 68 int32_t tmp32 = 0; local
175 tmp32 = WEBRTC_SPL_MUL_16_16(alpha + 1, self->mean_value[channel]);
176 tmp32 += WEBRTC_SPL_MUL_16_16(WEBRTC_SPL_WORD16_MAX - alpha, current_median);
177 tmp32 += 16384;
178 self->mean_value[channel] = (int16_t) (tmp32 >> 15);
  /external/llvm/test/Analysis/BasicAA/
2010-09-15-GEP-SignedArithmetic.ll 8 %tmp32 = add i32 %tmp31, 30
9 %t.5 = getelementptr i32* %tab, i32 %tmp32
  /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]* @.str, i32 0, i32 0) , i32 0 ) nounwind ; <i32> [#uses=0]
trunc.ll 87 %tmp32 = zext i32 %B to i128
88 %tmp33 = shl i128 %tmp32, 32
94 ; CHECK: %tmp32 = zext i32 %B to i64
95 ; CHECK: %tmp33 = shl nuw i64 %tmp32, 32
2008-05-09-SinkOfInvoke.ll 18 %tmp32 = invoke i32** @__ctype_toupper_loc( ) readnone
bitcast.ll 70 %tmp32 = zext i32 %B to i64
71 %tmp33 = shl i64 %tmp32, 32
87 %tmp32 = zext i32 %tmp31 to i64
88 %tmp33 = shl i64 %tmp32, 32
  /external/llvm/test/CodeGen/X86/
2008-02-06-LoadFoldingBug.ll 12 %tmp32 = fsub double -0.000000e+00, %tmp20 ; <double> [#uses=1]
16 store double %tmp32, double* %tmp40, align 8
mul-legalize.ll 13 %tmp32 = icmp eq i64 %tmp7, 105553116266496
14 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]
2010-01-13-OptExtBug.ll 29 %tmp32 = zext i16 %tmp31 to i32
35 %tmp33 = add i32 %indvar, %tmp32
2007-10-17-IllegalAsm.ll 36 %tmp32 = load i32* null, align 8 ; <i32> [#uses=3]
37 %tmp3435 = trunc i32 %tmp32 to i8 ; <i8> [#uses=1]
42 %tmp65 = and i32 %tmp32, 255 ; <i32> [#uses=1]
80 %tmp547 = and i32 %tmp32, -8193 ; <i32> [#uses=1]
2012-01-10-UndefExceptionEdge.ll 70 %tmp32 = bitcast i32* %tmp15 to i8*
88 tail call void @llvm.memset.p0i8.i32(i8* %tmp32, i8 0, i32 %tmp9, i32 1, i1 false) nounwind
104 tail call void @llvm.memset.p0i8.i32(i8* %tmp32, i8 0, i32 %tmp9, i32 1, i1 false) nounwind
  /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/speex/libspeex/
mdf.c 706 spx_word32_t tmp32; local
730 spx_word32_t tmp32; local
732 tmp32 = SUB32(EXTEND32(st->input[chan*st->frame_size+i]), EXTEND32(MULT16_16_P15(st->preemph, st->memD[chan])));
734 if (tmp32 > 32767)
736 tmp32 = 32767;
740 if (tmp32 < -32767)
742 tmp32 = -32767;
748 st->input[chan*st->frame_size+i] = EXTRACT16(tmp32);
756 spx_word32_t tmp32; local
758 tmp32 = SUB32(EXTEND32(far_end[i*K+speak]), EXTEND32(MULT16_16_P15(st->preemph, st->memX[speak])))
    [all...]
  /external/llvm/test/Transforms/LICM/
2007-05-22-VolatileSink.ll 49 %tmp32 = icmp sle i32 %i.1, 7 ; <i1> [#uses=1]
50 %tmp3233 = zext i1 %tmp32 to i8 ; <i8> [#uses=1]
  /external/llvm/test/Analysis/TypeBasedAliasAnalysis/
dynamic-indices.ll 16 ; CHECK: %tmp32 = load i64* %arrayidx31, align 8, !tbaa !3
60 %tmp32 = load i64* %arrayidx31, align 8, !tbaa !3
62 store i64 %tmp32, i64* %arrayidx35, align 8, !tbaa !3

Completed in 1243 milliseconds

1 2 3