Searched refs:bot_y (Results 1 – 4 of 4) sorted by relevance
/external/webp/src/dsp/ |
D | upsampling.c | 113 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bot_y, \ 129 FUNC(bot_y[2 * x + 0], bot_u[x], bot_v[x], bot_dst + 8 * x + 0); \ 130 FUNC(bot_y[2 * x + 1], bot_u[x], bot_v[x], bot_dst + 8 * x + 4); \ 132 if (len & 1) FUNC(bot_y[2 * x + 0], bot_u[x], bot_v[x], bot_dst + 8 * x); \
|
/external/opencv3/3rdparty/libwebp/dsp/ |
D | upsampling.c | 165 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bot_y, \ 180 FUNC(bot_y[2 * x + 0], bot_u[x], bot_v[x], bot_dst + 8 * x + 0); \ 181 FUNC(bot_y[2 * x + 1], bot_u[x], bot_v[x], bot_dst + 8 * x + 4); \ 183 if (len & 1) FUNC(bot_y[2 * x + 0], bot_u[x], bot_v[x], bot_dst + 8 * x); \
|
/external/libyuv/files/source/ |
D | planar_functions.cc | 1307 int bot_y = ((y + radius) < height) ? (y + radius) : (height - 1); in ARGBBlur() local 1308 int area = radius * (bot_y - top_y); in ARGBBlur() 1336 area += (bot_y - top_y); in ARGBBlur() 1347 area -= (bot_y - top_y); in ARGBBlur()
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | planar_functions.cc | 1733 int bot_y = ((y + radius) < height) ? (y + radius) : (height - 1); in ARGBBlur() local 1734 int area = radius * (bot_y - top_y); in ARGBBlur() 1763 area += (bot_y - top_y); in ARGBBlur() 1774 area -= (bot_y - top_y); in ARGBBlur()
|