Searched refs:LOAD_UV (Results 1 – 2 of 2) sorted by relevance
/external/webp/src/dsp/ |
D | upsampling.c | 35 #define LOAD_UV(u, v) ((u) | ((v) << 16)) macro 44 uint32_t tl_uv = LOAD_UV(top_u[0], top_v[0]); /* top-left sample */ \ 45 uint32_t l_uv = LOAD_UV(cur_u[0], cur_v[0]); /* left-sample */ \ 56 const uint32_t t_uv = LOAD_UV(top_u[x], top_v[x]); /* top sample */ \ 57 const uint32_t uv = LOAD_UV(cur_u[x], cur_v[x]); /* sample */ \ 104 #undef LOAD_UV
|
D | upsampling_mips_dsp_r2.c | 142 #define LOAD_UV(u, v) ((u) | ((v) << 16)) macro 151 uint32_t tl_uv = LOAD_UV(top_u[0], top_v[0]); /* top-left sample */ \ 152 uint32_t l_uv = LOAD_UV(cur_u[0], cur_v[0]); /* left-sample */ \ 163 const uint32_t t_uv = LOAD_UV(top_u[x], top_v[x]); /* top sample */ \ 164 const uint32_t uv = LOAD_UV(cur_u[x], cur_v[x]); /* sample */ \ 211 #undef LOAD_UV
|