/external/opencv3/3rdparty/libwebp/dsp/ |
upsampling.c | 40 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \ 48 if (top_y) { \ 50 FUNC(top_y[0], uv0 & 0xff, (uv0 >> 16), top_dst); \ 63 if (top_y) { \ 66 FUNC(top_y[2 * x - 1], uv0 & 0xff, (uv0 >> 16), \ 68 FUNC(top_y[2 * x - 0], uv1 & 0xff, (uv1 >> 16), \ 83 if (top_y) { \ 85 FUNC(top_y[len - 1], uv0 & 0xff, (uv0 >> 16), \ 114 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \ 119 FUNC(top_y[0], u[0], v[0], top_dst); [all...] |
upsampling_neon.c | 190 #define CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, uv, \ 192 if (top_y) { \ 193 CONVERT8(FMT, XSTEP, len, top_y, uv, top_dst, cur_x) \ 200 #define CONVERT2RGB_1(FMT, XSTEP, top_y, bottom_y, uv, \ 202 if (top_y) { \ 203 CONVERT1(FMT, XSTEP, len, top_y, uv, top_dst, cur_x); \ 211 static void FUNC_NAME(const uint8_t *top_y, const uint8_t *bottom_y, \ 234 if (top_y) { \ 237 VP8YuvTo ## FMT(top_y[0], u0, v0, top_dst); \ 248 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, [all...] |
upsampling_sse2.c | 111 #define CONVERT2RGB(FUNC, XSTEP, top_y, bottom_y, uv, \ 114 if (top_y) { \ 116 FUNC(top_y[(cur_x) + n], (uv)[n], (uv)[32 + n], \ 129 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \ 148 if (top_y) { \ 151 FUNC(top_y[0], u0, v0, top_dst); \ 162 CONVERT2RGB(FUNC, XSTEP, top_y, bottom_y, r_uv, top_dst, bottom_dst, \ 172 CONVERT2RGB(FUNC, XSTEP, top_y, bottom_y, r_uv, top_dst, bottom_dst, \
|
dsp.h | 150 const uint8_t* top_y, const uint8_t* bottom_y, 170 const uint8_t* top_y, const uint8_t* bottom_y,
|
/external/webp/src/dsp/ |
upsampling.c | 38 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \ 46 assert(top_y != NULL); \ 49 FUNC(top_y[0], uv0 & 0xff, (uv0 >> 16), top_dst); \ 65 FUNC(top_y[2 * x - 1], uv0 & 0xff, (uv0 >> 16), \ 67 FUNC(top_y[2 * x - 0], uv1 & 0xff, (uv1 >> 16), \ 84 FUNC(top_y[len - 1], uv0 & 0xff, (uv0 >> 16), \ 113 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bot_y, \ 122 FUNC(top_y[2 * x + 0], top_u[x], top_v[x], top_dst + 8 * x + 0); \ 123 FUNC(top_y[2 * x + 1], top_u[x], top_v[x], top_dst + 8 * x + 4); \ 125 if (len & 1) FUNC(top_y[2 * x + 0], top_u[x], top_v[x], top_dst + 8 * x); [all...] |
upsampling_neon.c | 195 #define CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, uv, \ 197 CONVERT8(FMT, XSTEP, len, top_y, uv, top_dst, cur_x); \ 203 #define CONVERT2RGB_1(FUNC, XSTEP, top_y, bottom_y, uv, \ 205 CONVERT1(FUNC, XSTEP, len, top_y, uv, top_dst, cur_x); \ 212 static void FUNC_NAME(const uint8_t *top_y, const uint8_t *bottom_y, \ 235 assert(top_y != NULL); \ 239 VP8YuvTo ## FMT(top_y[0], u0, v0, top_dst); \ 250 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \ 260 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \
|
upsampling_sse2.c | 107 #define CONVERT2RGB(FUNC, XSTEP, top_y, bottom_y, \ 111 FUNC(top_y[(cur_x) + n], r_u[n], r_v[n], \ 122 #define CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, \ 124 FUNC##32(top_y + (cur_x), r_u, r_v, top_dst + (cur_x) * XSTEP); \ 132 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \ 142 assert(top_y != NULL); \ 148 FUNC(top_y[0], u0_t, v0_t, top_dst); \ 159 CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, top_dst, bottom_dst, pos); \ 166 CONVERT2RGB(FUNC, XSTEP, top_y, bottom_y, top_dst, bottom_dst, \
|
upsampling_mips_dsp_r2.c | 147 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \ 155 assert(top_y != NULL); \ 158 FUNC(top_y[0], uv0 & 0xff, (uv0 >> 16), top_dst); \ 174 FUNC(top_y[2 * x - 1], uv0 & 0xff, (uv0 >> 16), \ 176 FUNC(top_y[2 * x - 0], uv1 & 0xff, (uv1 >> 16), \ 193 FUNC(top_y[len - 1], uv0 & 0xff, (uv0 >> 16), \
|
dsp.h | 279 const uint8_t* top_y, const uint8_t* bottom_y,
|
/ndk/tests/build/b9193874-neon/jni/ |
b9193874-neon.c | 163 void UpsampleRgbaLinePairNEON(const uint8_t *top_y, const uint8_t *bottom_y, const uint8_t *top_u, const uint8_t *top_v, const uint8_t *cur_u, const uint8_t *cur_v, uint8_t *top_dst, uint8_t *bottom_dst, int len) 242 if (top_y) { 247 uint8x8_t y = vld1_u8(top_y + (16 * block + 1) + i);
|
/external/opencv/cv/src/ |
cvrotcalipers.cpp | 112 float left_x, right_x, top_y, bottom_y; local 116 top_y = bottom_y = pt0.y; 128 if( pt0.y > top_y ) 129 top_y = pt0.y, top = i;
|
/external/opencv3/modules/imgproc/src/ |
rotcalipers.cpp | 112 float left_x, right_x, top_y, bottom_y; local 116 top_y = bottom_y = pt0.y; 128 if( pt0.y > top_y ) 129 top_y = pt0.y, top = i;
|
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
fpdf_render_text.cpp | 143 FX_FLOAT top_y = image_matrix.d + image_matrix.f; local 145 FX_BOOL bFlipped = top_y > bottom_y; 147 FX_FLOAT temp = top_y; 148 top_y = bottom_y; 151 pSize->AdjustBlue(top_y, bottom_y, top_line, bottom_line);
|
/external/opencv3/3rdparty/libwebp/dec/ |
frame.c | 585 uint8_t* const top_y = dec->y_t_ + dec->mb_x_ * 16; local 592 memcpy(y_dst - BPS, top_y, 16); 610 top_right[0] = top_y[15] * 0x01010101u; 612 memcpy(top_right, top_y + 16, sizeof(*top_right)); 667 memcpy(top_y, y_dst + 15 * BPS, 16);
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
planar_functions.cc | 1732 int top_y = ((y - radius - 1) >= 0) ? (y - radius - 1) : 0; local [all...] |
/external/libyuv/files/source/ |
planar_functions.cc | 1763 int top_y = ((y - radius - 1) >= 0) ? (y - radius - 1) : 0; local [all...] |