Searched refs:tmp_hi (Results 1 – 8 of 8) sorted by relevance
/external/webrtc/common_audio/signal_processing/ |
D | division_operations.c | 103 int16_t approx, tmp_hi, tmp_low, num_hi, num_low; in WebRtcSpl_DivW32HiLow() local 117 tmp_hi = (int16_t)(tmpW32 >> 16); in WebRtcSpl_DivW32HiLow() 118 tmp_low = (int16_t)((tmpW32 - ((int32_t)tmp_hi << 16)) >> 1); in WebRtcSpl_DivW32HiLow() 121 tmpW32 = (tmp_hi * approx + (tmp_low * approx >> 15)) << 1; in WebRtcSpl_DivW32HiLow() 124 tmp_hi = (int16_t)(tmpW32 >> 16); in WebRtcSpl_DivW32HiLow() 125 tmp_low = (int16_t)((tmpW32 - ((int32_t)tmp_hi << 16)) >> 1); in WebRtcSpl_DivW32HiLow() 133 tmpW32 = num_hi * tmp_hi + (num_hi * tmp_low >> 15) + in WebRtcSpl_DivW32HiLow() 134 (num_low * tmp_hi >> 15); in WebRtcSpl_DivW32HiLow()
|
D | levinson_durbin.c | 38 int16_t tmp_hi, tmp_low; in WebRtcSpl_LevinsonDurbin() local 88 tmp_hi = (int16_t)(temp1W32 >> 16); in WebRtcSpl_LevinsonDurbin() 89 tmp_low = (int16_t)((temp1W32 - ((int32_t)tmp_hi << 16)) >> 1); in WebRtcSpl_LevinsonDurbin() 92 temp1W32 = (R_hi[0] * tmp_hi + (R_hi[0] * tmp_low >> 15) + in WebRtcSpl_LevinsonDurbin() 93 (R_low[0] * tmp_hi >> 15)) << 1; in WebRtcSpl_LevinsonDurbin() 206 tmp_hi = (int16_t)(temp1W32 >> 16); in WebRtcSpl_LevinsonDurbin() 207 tmp_low = (int16_t)((temp1W32 - ((int32_t)tmp_hi << 16)) >> 1); in WebRtcSpl_LevinsonDurbin() 210 temp1W32 = (Alpha_hi * tmp_hi + (Alpha_hi * tmp_low >> 15) + in WebRtcSpl_LevinsonDurbin() 211 (Alpha_low * tmp_hi >> 15)) << 1; in WebRtcSpl_LevinsonDurbin()
|
/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/ruy/ruy/ |
D | kernel_avx.cc | 239 __m128i tmp_hi = 242 return _mm_unpacklo_epi64(res_lo, tmp_hi); 265 __m128i tmp_hi = 268 return _mm_unpacklo_epi64(res_lo, tmp_hi); 369 __m128i tmp_hi = _mm_shuffle_epi32(a_hi, 0xd8); 371 __m128i res_lo = _mm_unpacklo_epi64(tmp_lo, tmp_hi); 373 __m128i res_hi = _mm_unpackhi_epi64(tmp_lo, tmp_hi);
|
D | pack_avx.cc | 75 __m128i tmp_hi = _mm_shuffle_epi32(a_hi, 0xd8); 77 __m128i res_lo = _mm_unpacklo_epi64(tmp_lo, tmp_hi); 79 __m128i res_hi = _mm_unpackhi_epi64(tmp_lo, tmp_hi);
|
/external/gemmlowp/internal/ |
D | output_msa.h | 70 v4i32 tmp_hi = __builtin_msa_sat_s_w(input.reg[1], 8); 74 reinterpret_cast<v8i16>(tmp_hi), reinterpret_cast<v8i16>(tmp_lo)));
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
D | NVPTXInstrInfo.td | 2865 "{{ .reg .b16 \t%tmp_hi;\n\t" 2866 " mov.b32 \t{$dst, %tmp_hi}, $src; }}",
|
/external/mesa3d/src/amd/compiler/ |
D | aco_instruction_selection.cpp | 2095 Temp tmp_lo = bld.tmp(v1), tmp_hi = bld.tmp(v1); in visit_alu_instr() local 2096 bld.pseudo(aco_opcode::p_split_vector, Definition(tmp_lo), Definition(tmp_hi), tmp); in visit_alu_instr() 2098 …Temp dst1 = bld.vop2_e64(aco_opcode::v_cndmask_b32, bld.def(v1), tmp_hi, as_vgpr(ctx, src0_hi), co… in visit_alu_instr()
|