Home
last modified time | relevance | path

Searched refs:top_y (Results 1 – 9 of 9) sorted by relevance

/external/webp/src/dsp/
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[2 * x + 0], top_u[x], top_v[x], top_dst + 8 * x); \
Dupsampling_sse2.c107 #define CONVERT2RGB(FUNC, XSTEP, top_y, bottom_y, \ argument
111 FUNC(top_y[(cur_x) + n], r_u[n], r_v[n], \
122 #define CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, \ argument
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, \
Dupsampling_neon.c176 #define CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, uv, \ argument
178 CONVERT8(FMT, XSTEP, len, top_y, uv, top_dst, cur_x); \
184 #define CONVERT2RGB_1(FUNC, XSTEP, top_y, bottom_y, uv, \ argument
186 CONVERT1(FUNC, XSTEP, len, top_y, uv, top_dst, cur_x); \
193 static void FUNC_NAME(const uint8_t *top_y, const uint8_t *bottom_y, \
216 assert(top_y != NULL); \
220 VP8YuvTo ## FMT(top_y[0], u0, v0, top_dst); \
231 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
241 CONVERT2RGB_1(VP8YuvTo ## FMT, XSTEP, top_y, bottom_y, r_uv, \
Dupsampling_mips_dsp_r2.c145 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \
153 assert(top_y != NULL); \
156 FUNC(top_y[0], uv0 & 0xff, (uv0 >> 16), top_dst); \
172 FUNC(top_y[2 * x - 1], uv0 & 0xff, (uv0 >> 16), \
174 FUNC(top_y[2 * x - 0], uv1 & 0xff, (uv1 >> 16), \
191 FUNC(top_y[len - 1], uv0 & 0xff, (uv0 >> 16), \
Dupsampling_msa.c561 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bot_y, \
572 const uint8_t* ptop_y = &top_y[1]; \
577 FUNC(top_y[0], uv0 & 0xff, (uv0 >> 16), top_dst); \
633 FUNC(top_y[len - 1], tmp0 & 0xff, (tmp0 >> 16), \
Ddsp.h357 const uint8_t* top_y, const uint8_t* bottom_y,
/external/pdfium/core/fpdfapi/render/
Dcpdf_type3cache.cpp137 FX_FLOAT top_y = image_matrix.d + image_matrix.f; in RenderGlyph() local
139 bool bFlipped = top_y > bottom_y; in RenderGlyph()
141 FX_FLOAT temp = top_y; in RenderGlyph()
142 top_y = bottom_y; in RenderGlyph()
145 pSize->AdjustBlue(top_y, bottom_y, top_line, bottom_line); in RenderGlyph()
/external/libvpx/libvpx/third_party/libyuv/source/
Dplanar_functions.cc1903 int top_y = ((y - radius - 1) >= 0) ? (y - radius - 1) : 0; in ARGBBlur() local
1905 int area = radius * (bot_y - top_y); in ARGBBlur()
1911 if (top_y) { in ARGBBlur()
1934 area += (bot_y - top_y); in ARGBBlur()
1945 area -= (bot_y - top_y); in ARGBBlur()
/external/libyuv/files/source/
Dplanar_functions.cc2236 int top_y = ((y - radius - 1) >= 0) ? (y - radius - 1) : 0; in ARGBBlur() local
2238 int area = radius * (bot_y - top_y); in ARGBBlur()
2244 if (top_y) { in ARGBBlur()
2267 area += (bot_y - top_y); in ARGBBlur()
2278 area -= (bot_y - top_y); in ARGBBlur()