Home | History | Annotate | Download | only in common

Lines Matching defs:fract

1140     WORD32 inv_ang, inv_ang_sum, pos, fract;
1178 fract = pos & (31);
1185 pu1_dst[(row * dst_strd) + col] = (UWORD8)(((32 - fract)
1187 + fract * ref_main[ref_main_idx_u + 2] + 16) >> 5);
1188 pu1_dst[(row * dst_strd) + (col + 1)] = (UWORD8)(((32 - fract)
1190 + fract * ref_main[ref_main_idx_v + 2] + 16) >> 5);
1246 WORD32 pos, fract;
1258 fract = pos & (31);
1266 pu1_dst[col + (row * dst_strd)] = (((32 - fract)
1268 + fract * pu1_ref[ref_main_idx_u + 2] + 16) >> 5);
1269 pu1_dst[(col + 1) + (row * dst_strd)] = (((32 - fract)
1271 + fract * pu1_ref[ref_main_idx_v + 2] + 16) >> 5);