Home
last modified time | relevance | path

Searched refs:_col2 (Results 1 – 1 of 1) sorted by relevance

/external/libvpx/libvpx/vpx_dsp/
Dfastssim.c288 #define FS_COL_COPY(_col1, _col2) \ argument
290 col_sums_gx2[(_col1)] = col_sums_gx2[(_col2)]; \
291 col_sums_gy2[(_col1)] = col_sums_gy2[(_col2)]; \
292 col_sums_gxgy[(_col1)] = col_sums_gxgy[(_col2)]; \
295 #define FS_COL_HALVE(_col1, _col2) \ argument
297 col_sums_gx2[(_col1)] = col_sums_gx2[(_col2)] * 0.5; \
298 col_sums_gy2[(_col1)] = col_sums_gy2[(_col2)] * 0.5; \
299 col_sums_gxgy[(_col1)] = col_sums_gxgy[(_col2)] * 0.5; \
302 #define FS_COL_DOUBLE(_col1, _col2) \ argument
304 col_sums_gx2[(_col1)] = col_sums_gx2[(_col2)] * 2; \
[all …]