/external/opencv3/3rdparty/libwebp/dsp/ |
upsampling_neon.c | 190 #define CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, uv, \ 195 if (bottom_y) { \ 196 CONVERT8(FMT, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x) \ 200 #define CONVERT2RGB_1(FMT, XSTEP, top_y, bottom_y, uv, \ 205 if (bottom_y) { \ 206 CONVERT1(FMT, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x); \ 211 static void FUNC_NAME(const uint8_t *top_y, const uint8_t *bottom_y, \ 239 if (bottom_y) { \ 242 VP8YuvTo ## FMT(bottom_y[0], u0, v0, bottom_dst); \ 248 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, [all...] |
upsampling.c | 40 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \ 52 if (bottom_y) { \ 54 FUNC(bottom_y[0], uv0 & 0xff, (uv0 >> 16), bottom_dst); \ 71 if (bottom_y) { \ 74 FUNC(bottom_y[2 * x - 1], uv0 & 0xff, (uv0 >> 16), \ 76 FUNC(bottom_y[2 * x + 0], uv1 & 0xff, (uv1 >> 16), \ 88 if (bottom_y) { \ 90 FUNC(bottom_y[len - 1], uv0 & 0xff, (uv0 >> 16), \ 114 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \ 121 FUNC(bottom_y[0], u[0], v[0], bottom_dst); [all...] |
upsampling_sse2.c | 111 #define CONVERT2RGB(FUNC, XSTEP, top_y, bottom_y, uv, \ 120 if (bottom_y) { \ 122 FUNC(bottom_y[(cur_x) + n], (uv)[64 + n], (uv)[64 + 32 + n], \ 129 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \ 153 if (bottom_y) { \ 156 FUNC(bottom_y[0], u0, v0, bottom_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_neon.c | 195 #define CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, uv, \ 198 if (bottom_y != NULL) { \ 199 CONVERT8(FMT, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x); \ 203 #define CONVERT2RGB_1(FUNC, XSTEP, top_y, bottom_y, uv, \ 206 if (bottom_y != NULL) { \ 207 CONVERT1(FUNC, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x); \ 212 static void FUNC_NAME(const uint8_t *top_y, const uint8_t *bottom_y, \ 241 if (bottom_y != NULL) { \ 244 VP8YuvTo ## FMT(bottom_y[0], u0, v0, bottom_dst); \ 250 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, [all...] |
upsampling_sse2.c | 107 #define CONVERT2RGB(FUNC, XSTEP, top_y, bottom_y, \ 114 if (bottom_y != NULL) { \ 116 FUNC(bottom_y[(cur_x) + n], r_u[64 + n], r_v[64 + n], \ 122 #define CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, \ 125 if (bottom_y != NULL) { \ 126 FUNC##32(bottom_y + (cur_x), r_u + 64, r_v + 64, \ 132 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \ 149 if (bottom_y != NULL) { \ 152 FUNC(bottom_y[0], u0_b, v0_b, bottom_dst); \ 159 CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, top_dst, bottom_dst, pos); [all...] |
upsampling.c | 38 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \ 51 if (bottom_y != NULL) { \ 53 FUNC(bottom_y[0], uv0 & 0xff, (uv0 >> 16), bottom_dst); \ 70 if (bottom_y != NULL) { \ 73 FUNC(bottom_y[2 * x - 1], uv0 & 0xff, (uv0 >> 16), \ 75 FUNC(bottom_y[2 * x + 0], uv1 & 0xff, (uv1 >> 16), \ 87 if (bottom_y != NULL) { \ 89 FUNC(bottom_y[len - 1], uv0 & 0xff, (uv0 >> 16), \
|
upsampling_mips_dsp_r2.c | 147 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \ 160 if (bottom_y != NULL) { \ 162 FUNC(bottom_y[0], uv0 & 0xff, (uv0 >> 16), bottom_dst); \ 179 if (bottom_y != NULL) { \ 182 FUNC(bottom_y[2 * x - 1], uv0 & 0xff, (uv0 >> 16), \ 184 FUNC(bottom_y[2 * x + 0], uv1 & 0xff, (uv1 >> 16), \ 196 if (bottom_y != NULL) { \ 198 FUNC(bottom_y[len - 1], uv0 & 0xff, (uv0 >> 16), \
|
dsp.h | 277 // bottom_y can be NULL if only one line of output is needed (at top/bottom). 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) 290 if (bottom_y) { 295 uint8x8_t y = vld1_u8(bottom_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; 131 if( pt0.y < bottom_y ) 132 bottom_y = pt0.y, bottom = 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; 131 if( pt0.y < bottom_y ) 132 bottom_y = pt0.y, bottom = i;
|
/external/pdfium/core/src/fpdfapi/fpdf_render/ |
fpdf_render_text.cpp | 144 FX_FLOAT bottom_y = image_matrix.f; local 145 FX_BOOL bFlipped = top_y > bottom_y; 148 top_y = bottom_y; 149 bottom_y = temp; 151 pSize->AdjustBlue(top_y, bottom_y, top_line, bottom_line);
|