Searched defs:shift_val (Results 1 - 6 of 6) sorted by relevance

/external/libxaac/decoder/
H A Dixheaacd_stereo.c175 WORD32 temp, shift_val; local
178 shift_val = ixheaacd_norm32(temp);
179 temp = ixheaacd_shl32(temp, shift_val);
182 shift_val = shift_val + scf_exp;
184 if (shift_val < 0) {
185 temp = ixheaacd_shl32_sat(temp, -shift_val);
187 temp = ixheaacd_shr32(temp, shift_val);
H A Dixheaacd_block.c1293 WORD32 shift_val) {
1302 *temp_ptr++ = temp1 >> shift_val;
1304 *temp_ptr++ = temp2 >> shift_val;
1306 *temp_ptr++ = temp1 >> shift_val;
1307 *temp_ptr++ = temp2 >> shift_val;
1292 ixheaacd_right_shift_block(WORD32 *p_spectrum, WORD32 length, WORD32 shift_val) argument
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_srgb.c357 LLVMValueRef shifted, shift_val; local
359 shift_val = lp_build_const_int_vec(gallivm, int32_type, ls);
360 shifted = LLVMBuildShl(builder, tmpsrgb[chan], shift_val, "");
/external/libhevc/common/arm/
H A Dihevc_intra_pred_filters_neon_intr.c1225 /* (eg. shift_val which contains the shifted value, */
1240 int16x8_t shift_val, add_sat; local
1259 shift_val = vshrq_n_s16(vreinterpretq_s16_u16(sub_val), 1);
1261 add_sat = vqaddq_s16(shift_val, vreinterpretq_s16_u16(dup_add));
1455 /* (eg. shift_val which contains the shifted value, */
1784 uint64x1_t shift_val; local
1805 shift_val = vshr_n_u64(vreinterpret_u64_u8(rev_val_second), 8);
1806 vext_t = vext_u8(vext_t, vreinterpret_u8_u64(shift_val), 1);
1810 shift_val = vshr_n_u64(vreinterpret_u64_u8(rev_val_second), 16);
1811 vext_t = vext_u8(vext_t, vreinterpret_u8_u64(shift_val),
[all...]
/external/vixl/src/aarch64/
H A Dlogic-aarch64.cc1916 int8_t shift_val = src2.Int(vform, i); local
1920 if ((shift_val > CountLeadingSignBits(lj_src_val)) && (lj_src_val != 0)) {
1927 } else if ((shift_val > CountLeadingZeros(lj_src_val)) &&
1934 if (shift_val > 63) {
1936 } else if (shift_val < -63) {
1944 if (shift_val < 0) {
1946 shift_val = -shift_val;
1950 if (((usrc_val >> (shift_val - 1)) & 1) == 1) {
1954 usrc_val >>= shift_val;
1976 int8_t shift_val = src2.Int(vform, i); local
2000 src_val <<= shift_val; local
[all...]
/external/valgrind/VEX/priv/
H A Dguest_ppc_toIR.c12917 UChar shift_val = IFIELD(theInstr, 10, 6); local
12929 flag_rC ? ".":"", frS_addr, frA_addr, shift_val );
12930 assign( frS, binop( Iop_ShlD64, mkexpr( frA ), mkU8( shift_val ) ) );
12934 flag_rC ? ".":"", frS_addr, frA_addr, shift_val );
12935 assign( frS, binop( Iop_ShrD64, mkexpr( frA ), mkU8( shift_val ) ) );
12954 UChar shift_val = IFIELD(theInstr, 10, 6); local
12966 flag_rC ? ".":"", frS_addr, frA_addr, shift_val );
12967 assign( frS, binop( Iop_ShlD128, mkexpr( frA ), mkU8( shift_val ) ) );
12971 flag_rC ? ".":"", frS_addr, frA_addr, shift_val );
12972 assign( frS, binop( Iop_ShrD128, mkexpr( frA ), mkU8( shift_val ) ) );
[all...]

Completed in 276 milliseconds