Searched refs:LOAD_UV (Results 1 – 2 of 2) sorted by relevance
/external/webp/src/dsp/ |
D | upsampling_mips_dsp_r2.c | 143 #define LOAD_UV(u, v) ((u) | ((v) << 16)) macro 152 uint32_t tl_uv = LOAD_UV(top_u[0], top_v[0]); /* top-left sample */ \ 153 uint32_t l_uv = LOAD_UV(cur_u[0], cur_v[0]); /* left-sample */ \ 164 const uint32_t t_uv = LOAD_UV(top_u[x], top_v[x]); /* top sample */ \ 165 const uint32_t uv = LOAD_UV(cur_u[x], cur_v[x]); /* sample */ \ 214 #undef LOAD_UV
|
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 */ \ 130 #undef LOAD_UV
|