/external/freetype/src/pshinter/ |
D | pshalgo.c | 1126 vec[n].x = point->cur_u; in psh_glyph_save_points() 1128 vec[n].y = point->cur_u; in psh_glyph_save_points() 1137 point->cur_x = point->cur_u; in psh_glyph_save_points() 1142 point->cur_y = point->cur_u; in psh_glyph_save_points() 1685 point->cur_u = zone->cur_bottom; in psh_glyph_find_blue_points() 1707 point->cur_u = zone->cur_top; in psh_glyph_find_blue_points() 1739 point->cur_u = hint->cur_pos; in psh_glyph_interpolate_strong_points() 1742 point->cur_u = hint->cur_pos + hint->cur_len; in psh_glyph_interpolate_strong_points() 1749 point->cur_u = hint->cur_pos + FT_MulFix( delta, scale ); in psh_glyph_interpolate_strong_points() 1752 point->cur_u = hint->cur_pos + hint->cur_len + in psh_glyph_interpolate_strong_points() [all …]
|
D | pshalgo.h | 168 FT_Pos cur_u; member
|
/external/webp/src/dsp/ |
D | upsampling_sse41.c | 121 const uint8_t* cur_u, const uint8_t* cur_v, \ 131 const int u_diag = ((top_u[0] + cur_u[0]) >> 1) + 1; \ 137 const int u0_b = (cur_u[0] + u_diag) >> 1; \ 144 UPSAMPLE_32PIXELS(top_u + uv_pos, cur_u + uv_pos, r_u); \ 155 UPSAMPLE_LAST_BLOCK(top_u + uv_pos, cur_u + uv_pos, left_over, r_u); \
|
D | upsampling_neon.c | 195 const uint8_t* cur_u, const uint8_t* cur_v, \ 207 const int u_diag = ((top_u[0] + cur_u[0]) >> 1) + 1; \ 223 const int u0 = (cur_u[0] + u_diag) >> 1; \ 229 UPSAMPLE_16PIXELS(top_u, cur_u, r_uv); \ 234 cur_u += 8; \ 239 UPSAMPLE_LAST_BLOCK(top_u, cur_u, leftover, r_uv); \
|
D | upsampling.c | 40 const uint8_t* cur_u, const uint8_t* cur_v, \ 45 uint32_t l_uv = LOAD_UV(cur_u[0], cur_v[0]); /* left-sample */ \ 57 const uint32_t uv = LOAD_UV(cur_u[x], cur_v[x]); /* sample */ \ 108 const uint8_t* cur_u, const uint8_t* cur_v, 114 (void)cur_u;
|
D | upsampling_sse2.c | 119 const uint8_t* cur_u, const uint8_t* cur_v, \ 129 const int u_diag = ((top_u[0] + cur_u[0]) >> 1) + 1; \ 135 const int u0_b = (cur_u[0] + u_diag) >> 1; \ 142 UPSAMPLE_32PIXELS(top_u + uv_pos, cur_u + uv_pos, r_u); \ 153 UPSAMPLE_LAST_BLOCK(top_u + uv_pos, cur_u + uv_pos, left_over, r_u); \
|
D | upsampling_mips_dsp_r2.c | 148 const uint8_t* cur_u, const uint8_t* cur_v, \ 153 uint32_t l_uv = LOAD_UV(cur_u[0], cur_v[0]); /* left-sample */ \ 165 const uint32_t uv = LOAD_UV(cur_u[x], cur_v[x]); /* sample */ \
|
D | upsampling_msa.c | 569 const uint8_t* cur_u, const uint8_t* cur_v, \ 576 const uint32_t l_uv = ((cur_u[0]) | ((cur_v[0]) << 16)); \ 591 LD_UB2(cur_u, 1, cu0, cu1); \ 608 cur_u += 16; \ 615 memcpy(&temp_u[32], cur_u, 17 * sizeof(uint8_t)); \ 632 cur_u += size; \ 637 const uint32_t c0 = ((cur_u[0]) | ((cur_v[0]) << 16)); \
|
D | dsp.h | 449 const uint8_t* cur_u, const uint8_t* cur_v,
|
/external/webp/src/dec/ |
D | io_dec.c | 63 const uint8_t* cur_u = io->u; in EmitFancyRGB() local 74 upsample(cur_y, NULL, cur_u, cur_v, cur_u, cur_v, dst, NULL, mb_w); in EmitFancyRGB() 77 upsample(p->tmp_y, cur_y, top_u, top_v, cur_u, cur_v, in EmitFancyRGB() 83 top_u = cur_u; in EmitFancyRGB() 85 cur_u += io->uv_stride; in EmitFancyRGB() 90 top_u, top_v, cur_u, cur_v, in EmitFancyRGB() 98 memcpy(p->tmp_u, cur_u, uv_w * sizeof(*p->tmp_u)); in EmitFancyRGB() 106 upsample(cur_y, NULL, cur_u, cur_v, cur_u, cur_v, in EmitFancyRGB()
|
/external/webp/src/enc/ |
D | picture_csp_enc.c | 1057 const uint8_t* cur_u = picture->u, *cur_v = picture->v, *cur_y = picture->y; in WebPPictureYUVAToARGB() local 1062 upsample(cur_y, NULL, cur_u, cur_v, cur_u, cur_v, dst, NULL, width); in WebPPictureYUVAToARGB() 1067 const uint8_t* const top_u = cur_u; in WebPPictureYUVAToARGB() 1069 cur_u += picture->uv_stride; in WebPPictureYUVAToARGB() 1071 upsample(cur_y, cur_y + picture->y_stride, top_u, top_v, cur_u, cur_v, in WebPPictureYUVAToARGB() 1078 upsample(cur_y, NULL, cur_u, cur_v, cur_u, cur_v, dst, NULL, width); in WebPPictureYUVAToARGB()
|