Home
last modified time | relevance | path

Searched refs:bottom_y (Results 1 – 8 of 8) sorted by relevance

/external/webp/src/dsp/
Dupsampling_sse41.c109 #define CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, \ argument
112 if ((bottom_y) != NULL) { \
113 FUNC##32_SSE41((bottom_y) + (cur_x), r_u + 64, r_v + 64, \
119 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \
136 if (bottom_y != NULL) { \
139 FUNC(bottom_y[0], u0_b, v0_b, bottom_dst); \
146 CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, top_dst, bottom_dst, pos); \
153 uint8_t* const tmp_bottom = (bottom_y == NULL) ? NULL : tmp_top + 32; \
158 if (bottom_y != NULL) memcpy(tmp_bottom, bottom_y + pos, len - pos); \
162 if (bottom_y != NULL) { \
Dupsampling_sse2.c107 #define CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, \ argument
110 if ((bottom_y) != NULL) { \
111 FUNC##32_SSE2((bottom_y) + (cur_x), r_u + 64, r_v + 64, \
117 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \
134 if (bottom_y != NULL) { \
137 FUNC(bottom_y[0], u0_b, v0_b, bottom_dst); \
144 CONVERT2RGB_32(FUNC, XSTEP, top_y, bottom_y, top_dst, bottom_dst, pos); \
151 uint8_t* const tmp_bottom = (bottom_y == NULL) ? NULL : tmp_top + 32; \
156 if (bottom_y != NULL) memcpy(tmp_bottom, bottom_y + pos, len - pos); \
160 if (bottom_y != NULL) { \
Dupsampling_neon.c176 #define CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, uv, \ argument
179 if (bottom_y != NULL) { \
180 CONVERT8(FMT, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x); \
184 #define CONVERT2RGB_1(FUNC, XSTEP, top_y, bottom_y, uv, \ argument
187 if (bottom_y != NULL) { \
188 CONVERT1(FUNC, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x); \
193 static void FUNC_NAME(const uint8_t *top_y, const uint8_t *bottom_y, \
222 if (bottom_y != NULL) { \
225 VP8YuvTo ## FMT(bottom_y[0], u0, v0, bottom_dst); \
231 CONVERT2RGB_8(FMT, XSTEP, top_y, bottom_y, r_uv, \
[all …]
Dupsampling.c38 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), \
106 static void EmptyUpsampleFunc(const uint8_t* top_y, const uint8_t* bottom_y,
111 (void)bottom_y;
Dupsampling_mips_dsp_r2.c146 static void FUNC_NAME(const uint8_t* top_y, const uint8_t* bottom_y, \
159 if (bottom_y != NULL) { \
161 FUNC(bottom_y[0], uv0 & 0xff, (uv0 >> 16), bottom_dst); \
178 if (bottom_y != NULL) { \
181 FUNC(bottom_y[2 * x - 1], uv0 & 0xff, (uv0 >> 16), \
183 FUNC(bottom_y[2 * x + 0], uv1 & 0xff, (uv1 >> 16), \
195 if (bottom_y != NULL) { \
197 FUNC(bottom_y[len - 1], uv0 & 0xff, (uv0 >> 16), \
Ddsp.h441 const uint8_t* top_y, const uint8_t* bottom_y,
/external/pdfium/core/fpdfapi/render/
Dcpdf_type3cache.cpp139 float bottom_y = image_matrix.f; in RenderGlyph() local
140 bool bFlipped = top_y > bottom_y; in RenderGlyph()
143 top_y = bottom_y; in RenderGlyph()
144 bottom_y = temp; in RenderGlyph()
146 pSize->AdjustBlue(top_y, bottom_y, top_line, bottom_line); in RenderGlyph()
/external/u-boot/drivers/video/
Dstb_truetype.h2522 int x,y,bottom_y, i; in stbtt_BakeFontBitmap() local
2528 bottom_y = 1; in stbtt_BakeFontBitmap()
2540 y = bottom_y, x = 1; // advance to next row in stbtt_BakeFontBitmap()
2554 if (y+gh+1 > bottom_y) in stbtt_BakeFontBitmap()
2555 bottom_y = y+gh+1; in stbtt_BakeFontBitmap()
2557 return bottom_y; in stbtt_BakeFontBitmap()
2609 int x,y,bottom_y; member
2629 con->bottom_y = 0; in stbrp_init_target()
2640 con->y = con->bottom_y; in stbrp_pack_rects()
2648 if (con->y + rects[i].h > con->bottom_y) in stbrp_pack_rects()
[all …]