Searched refs:top_y (Results 1 - 8 of 8) sorted by relevance

/external/webp/src/dsp/
H A Dupsampling.c38 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[
[all...]
H A Dupsampling_sse2.c107 #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, \
H A Dupsampling_neon.c164 #define CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, uv, \
166 CONVERT8(FMT, XSTEP, len, top_y, uv, top_dst, cur_x) \
172 #define CONVERT2RGB_1(FUNC, XSTEP, top_y, bottom_y, uv, \
174 CONVERT1(FUNC, XSTEP, len, top_y, uv, top_dst, cur_x); \
181 static void FUNC_NAME(const uint8_t *top_y, const uint8_t *bottom_y, \
204 assert(top_y != NULL); \
208 VP8YuvTo ## FMT(top_y[0], u0, v0, top_dst); \
219 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
229 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \
H A Ddsp.h208 const uint8_t* top_y, const uint8_t* bottom_y,
/external/opencv/cv/src/
H A Dcvrotcalipers.cpp112 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/
H A Dfpdf_render_text.cpp143 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/libyuv/files/source/
H A Dplanar_functions.cc1306 int top_y = ((y - radius - 1) >= 0) ? (y - radius - 1) : 0; local
1308 int area = radius * (bot_y - top_y);
1311 if (top_y) {
1336 area += (bot_y - top_y);
1347 area -= (bot_y - top_y);
/external/libvpx/libvpx/third_party/libyuv/source/
H A Dplanar_functions.cc1732 int top_y = ((y - radius - 1) >= 0) ? (y - radius - 1) : 0; local
1734 int area = radius * (bot_y - top_y);
1740 if (top_y) {
1763 area += (bot_y - top_y);
1774 area -= (bot_y - top_y);

Completed in 218 milliseconds