/external/webp/src/dsp/ |
D | upsampling_sse41.c | 109 #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) { \
|
D | upsampling_sse2.c | 107 #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) { \
|
D | upsampling_neon.c | 176 #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 …]
|
D | 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), \ 106 static void EmptyUpsampleFunc(const uint8_t* top_y, const uint8_t* bottom_y, 111 (void)bottom_y;
|
D | upsampling_mips_dsp_r2.c | 146 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), \
|
D | dsp.h | 447 const uint8_t* top_y, const uint8_t* bottom_y,
|
/external/pdfium/core/fpdfapi/render/ |
D | cpdf_type3cache.cpp | 140 float bottom_y = image_matrix.f; in RenderGlyph() local 141 bool bFlipped = top_y > bottom_y; in RenderGlyph() 143 std::swap(top_y, bottom_y); in RenderGlyph() 144 std::tie(top_line, bottom_line) = pSize->AdjustBlue(top_y, bottom_y); in RenderGlyph()
|
/external/mesa3d/src/imgui/ |
D | imstb_truetype.h | 3660 int x,y,bottom_y, i; in stbtt_BakeFontBitmap_internal() local 3667 bottom_y = 1; in stbtt_BakeFontBitmap_internal() 3679 y = bottom_y, x = 1; // advance to next row in stbtt_BakeFontBitmap_internal() 3693 if (y+gh+1 > bottom_y) in stbtt_BakeFontBitmap_internal() 3694 bottom_y = y+gh+1; in stbtt_BakeFontBitmap_internal() 3696 return bottom_y; in stbtt_BakeFontBitmap_internal() 3743 int x,y,bottom_y; member 3763 con->bottom_y = 0; in stbrp_init_target() 3774 con->y = con->bottom_y; in stbrp_pack_rects() 3782 if (con->y + rects[i].h > con->bottom_y) in stbrp_pack_rects() [all …]
|