Searched defs:scale_val (Results 1 - 4 of 4) sorted by relevance

/external/libavc/common/x86/
H A Dih264_ihadamard_scaling_sse42.c213 __m128i scale_val = _mm_set1_epi32((WORD32)(pu2_iscal_mat[0] * pu2_weigh_mat[0])); local
234 temp0 = _mm_mullo_epi32(scale_val, plane_0); //multiply by pu2_iscal_mat[0] * pu2_weigh_mat[0]
235 temp1 = _mm_mullo_epi32(scale_val, plane_1); //multiply by pu2_iscal_mat[0] * pu2_weigh_mat[0]
H A Dih264_resi_trans_quant_sse42.c682 __m128i scale_val = _mm_set1_epi32(pu2_scale_matrix[0]); local
779 temp0 = _mm_mullo_epi32(scale_val, src_r0); //multiply by pu2_scale_matrix[0]
780 temp1 = _mm_mullo_epi32(scale_val, src_r1);
781 temp2 = _mm_mullo_epi32(scale_val, src_r2);
782 temp3 = _mm_mullo_epi32(scale_val, src_r3);
906 __m128i scale_val = _mm_set1_epi32(pu2_scale_matrix[0]); local
943 temp0 = _mm_mullo_epi32(scale_val, plane_0); //multiply by pu2_scale_matrix[0]
944 temp1 = _mm_mullo_epi32(scale_val, plane_1); //multiply by pu2_scale_matrix[0]
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_format_soa.c207 LLVMValueRef scale_val = lp_build_const_vec(gallivm, type, scale); local
208 input = LLVMBuildFMul(builder, input, scale_val, "");
256 LLVMValueRef scale_val = lp_build_const_vec(gallivm, type, scale); local
258 input = LLVMBuildFMul(builder, input, scale_val, "");
/external/libvpx/libvpx/vp8/encoder/
H A Dfirstpass.c2986 int scale_val = 0; local
3113 while ((kf_q >= cpi->worst_quality) && (scale_val < 6)) {
3114 scale_val++;
3116 cpi->common.vert_scale = vscale_lookup[scale_val];
3117 cpi->common.horiz_scale = hscale_lookup[scale_val];

Completed in 972 milliseconds