HomeSort by relevance Sort by last modified time
    Searched refs:tmp_hi (Results 1 - 7 of 7) sorted by null

  /external/webrtc/webrtc/common_audio/signal_processing/
division_operations.c 102 int16_t approx, tmp_hi, tmp_low, num_hi, num_low; local
115 tmp_hi = (int16_t)(tmpW32 >> 16);
116 tmp_low = (int16_t)((tmpW32 - ((int32_t)tmp_hi << 16)) >> 1);
119 tmpW32 = (tmp_hi * approx + (tmp_low * approx >> 15)) << 1;
122 tmp_hi = (int16_t)(tmpW32 >> 16);
123 tmp_low = (int16_t)((tmpW32 - ((int32_t)tmp_hi << 16)) >> 1);
131 tmpW32 = num_hi * tmp_hi + (num_hi * tmp_low >> 15) +
132 (num_low * tmp_hi >> 15);
levinson_durbin.c 36 int16_t tmp_hi, tmp_low; local
85 tmp_hi = (int16_t)(temp1W32 >> 16);
86 tmp_low = (int16_t)((temp1W32 - ((int32_t)tmp_hi << 16)) >> 1);
89 temp1W32 = (R_hi[0] * tmp_hi + (R_hi[0] * tmp_low >> 15) +
90 (R_low[0] * tmp_hi >> 15)) << 1;
203 tmp_hi = (int16_t)(temp1W32 >> 16);
204 tmp_low = (int16_t)((temp1W32 - ((int32_t)tmp_hi << 16)) >> 1);
207 temp1W32 = (Alpha_hi * tmp_hi + (Alpha_hi * tmp_low >> 15) +
208 (Alpha_low * tmp_hi >> 15)) << 1;
  /external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
lpc_masking_model.c 82 int16_t tmp_hi, tmp_low; local
128 tmp_hi = (int16_t)(temp1W32 >> 16);
129 tmp_low = (int16_t)((temp1W32 - ((int32_t)tmp_hi << 16)) >> 1);
132 temp1W32 = (R_hi[0] * tmp_hi + ((R_hi[0] * tmp_low) >> 15) +
133 ((R_low[0] * tmp_hi) >> 15)) << 1;
238 tmp_hi = (int16_t)(temp1W32 >> 16);
239 tmp_low = (int16_t)((temp1W32 - ((int32_t)tmp_hi << 16)) >> 1);
242 temp1W32 = (Alpha_hi * tmp_hi + ((Alpha_hi * tmp_low) >> 15) +
243 ((Alpha_low * tmp_hi) >> 15)) << 1;
  /external/webp/src/dsp/
enc_sse41.c 288 const __m128i tmp_hi = _mm_shuffle_epi8(out8, kCst_hi); local
291 const __m128i out_z8 = _mm_or_si128(tmp_hi, tmp_7);
  /art/compiler/optimizing/
intrinsics_mips.cc 667 Register tmp_hi = locations->GetTemp(0).AsRegister<Register>(); local
673 __ Srl(tmp_hi, in_hi, 1);
680 __ And(tmp_hi, tmp_hi, AT);
681 __ Subu(tmp_hi, in_hi, tmp_hi);
690 __ And(out_hi, tmp_hi, AT);
691 __ Srl(tmp_hi, tmp_hi, 2);
692 __ And(tmp_hi, tmp_hi, AT)
    [all...]
  /external/gemmlowp/internal/
output_msa.h 74 v4i32 tmp_hi = __builtin_msa_sat_s_w(input.reg[1], 8); local
78 reinterpret_cast<v8i16>(tmp_hi), reinterpret_cast<v8i16>(tmp_lo)));
  /external/valgrind/VEX/priv/
guest_ppc_toIR.c 14603 IRTemp tmp_hi = newTemp( Ity_I64 ); local
17095 IRTemp tmp_hi[9]; local
19978 IRTemp tmp_hi[9]; local
20133 IRTemp tmp_hi[9]; local
20400 IRTemp tmp_hi[5]; local
20456 IRTemp tmp_hi[9]; local
20883 IRTemp tmp_hi[9]; local
    [all...]

Completed in 2092 milliseconds