Searched refs:tmp_hi (Results 1 – 7 of 7) sorted by relevance
/external/webrtc/webrtc/common_audio/signal_processing/ |
D | division_operations.c | 102 int16_t approx, tmp_hi, tmp_low, num_hi, num_low; in WebRtcSpl_DivW32HiLow() local 115 tmp_hi = (int16_t)(tmpW32 >> 16); in WebRtcSpl_DivW32HiLow() 116 tmp_low = (int16_t)((tmpW32 - ((int32_t)tmp_hi << 16)) >> 1); in WebRtcSpl_DivW32HiLow() 119 tmpW32 = (tmp_hi * approx + (tmp_low * approx >> 15)) << 1; in WebRtcSpl_DivW32HiLow() 122 tmp_hi = (int16_t)(tmpW32 >> 16); in WebRtcSpl_DivW32HiLow() 123 tmp_low = (int16_t)((tmpW32 - ((int32_t)tmp_hi << 16)) >> 1); in WebRtcSpl_DivW32HiLow() 131 tmpW32 = num_hi * tmp_hi + (num_hi * tmp_low >> 15) + in WebRtcSpl_DivW32HiLow() 132 (num_low * tmp_hi >> 15); in WebRtcSpl_DivW32HiLow()
|
D | levinson_durbin.c | 36 int16_t tmp_hi, tmp_low; in WebRtcSpl_LevinsonDurbin() local 85 tmp_hi = (int16_t)(temp1W32 >> 16); in WebRtcSpl_LevinsonDurbin() 86 tmp_low = (int16_t)((temp1W32 - ((int32_t)tmp_hi << 16)) >> 1); in WebRtcSpl_LevinsonDurbin() 89 temp1W32 = (R_hi[0] * tmp_hi + (R_hi[0] * tmp_low >> 15) + in WebRtcSpl_LevinsonDurbin() 90 (R_low[0] * tmp_hi >> 15)) << 1; in WebRtcSpl_LevinsonDurbin() 203 tmp_hi = (int16_t)(temp1W32 >> 16); in WebRtcSpl_LevinsonDurbin() 204 tmp_low = (int16_t)((temp1W32 - ((int32_t)tmp_hi << 16)) >> 1); in WebRtcSpl_LevinsonDurbin() 207 temp1W32 = (Alpha_hi * tmp_hi + (Alpha_hi * tmp_low >> 15) + in WebRtcSpl_LevinsonDurbin() 208 (Alpha_low * tmp_hi >> 15)) << 1; in WebRtcSpl_LevinsonDurbin()
|
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/ |
D | lpc_masking_model.c | 82 int16_t tmp_hi, tmp_low; in WebRtcSpl_LevinsonW32_JSK() local 128 tmp_hi = (int16_t)(temp1W32 >> 16); in WebRtcSpl_LevinsonW32_JSK() 129 tmp_low = (int16_t)((temp1W32 - ((int32_t)tmp_hi << 16)) >> 1); in WebRtcSpl_LevinsonW32_JSK() 132 temp1W32 = (R_hi[0] * tmp_hi + ((R_hi[0] * tmp_low) >> 15) + in WebRtcSpl_LevinsonW32_JSK() 133 ((R_low[0] * tmp_hi) >> 15)) << 1; in WebRtcSpl_LevinsonW32_JSK() 238 tmp_hi = (int16_t)(temp1W32 >> 16); in WebRtcSpl_LevinsonW32_JSK() 239 tmp_low = (int16_t)((temp1W32 - ((int32_t)tmp_hi << 16)) >> 1); in WebRtcSpl_LevinsonW32_JSK() 242 temp1W32 = (Alpha_hi * tmp_hi + ((Alpha_hi * tmp_low) >> 15) + in WebRtcSpl_LevinsonW32_JSK() 243 ((Alpha_low * tmp_hi) >> 15)) << 1; in WebRtcSpl_LevinsonW32_JSK()
|
/external/webp/src/dsp/ |
D | enc_sse41.c | 288 const __m128i tmp_hi = _mm_shuffle_epi8(out8, kCst_hi); in DoQuantizeBlock_SSE41() local 291 const __m128i out_z8 = _mm_or_si128(tmp_hi, tmp_7); in DoQuantizeBlock_SSE41()
|
/external/gemmlowp/internal/ |
D | output_msa.h | 74 v4i32 tmp_hi = __builtin_msa_sat_s_w(input.reg[1], 8); 78 reinterpret_cast<v8i16>(tmp_hi), reinterpret_cast<v8i16>(tmp_lo)));
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/NVPTX/ |
D | f16x2-instructions.ll | 28 ; CHECK: mov.b32 {[[R:%h[0-9]+]], %tmp_hi}, [[A]]; 1435 ; CHECK: mov.b32 {%h2, %tmp_hi}, %hh1;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/NVPTX/ |
D | NVPTXInstrInfo.td | 2850 "{{ .reg .b16 \t%tmp_hi;\n\t" 2851 " mov.b32 \t{$dst, %tmp_hi}, $src; }}",
|