/external/chromium_org/third_party/libwebp/dsp/ |
D | upsampling_sse2.c | 108 top_dst, bottom_dst, cur_x, num_pixels) { \ argument 111 FUNC(top_y[(cur_x) + n], r_u[n], r_v[n], \ 112 top_dst + ((cur_x) + n) * XSTEP); \ 116 FUNC(bottom_y[(cur_x) + n], r_u[64 + n], r_v[64 + n], \ 117 bottom_dst + ((cur_x) + n) * XSTEP); \ 123 top_dst, bottom_dst, cur_x) do { \ argument 124 FUNC##32(top_y + (cur_x), r_u, r_v, top_dst + (cur_x) * XSTEP); \ 126 FUNC##32(bottom_y + (cur_x), r_u + 64, r_v + 64, \ 127 bottom_dst + (cur_x) * XSTEP); \
|
D | upsampling_neon.c | 120 #define CONVERT8(FMT, XSTEP, N, src_y, src_uv, out, cur_x) { \ argument 123 const int off = ((cur_x) + i) * XSTEP; \ 124 uint8x8_t y = vld1_u8((src_y) + (cur_x) + i); \ 153 #define CONVERT1(FUNC, XSTEP, N, src_y, src_uv, rgb, cur_x) { \ argument 156 const int off = ((cur_x) + i) * XSTEP; \ 157 const int y = src_y[(cur_x) + i]; \ 165 top_dst, bottom_dst, cur_x, len) { \ argument 166 CONVERT8(FMT, XSTEP, len, top_y, uv, top_dst, cur_x) \ 168 CONVERT8(FMT, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x) \ 173 top_dst, bottom_dst, cur_x, len) { \ argument [all …]
|
/external/webp/src/dsp/ |
D | upsampling_sse2.c | 108 top_dst, bottom_dst, cur_x, num_pixels) { \ argument 111 FUNC(top_y[(cur_x) + n], r_u[n], r_v[n], \ 112 top_dst + ((cur_x) + n) * XSTEP); \ 116 FUNC(bottom_y[(cur_x) + n], r_u[64 + n], r_v[64 + n], \ 117 bottom_dst + ((cur_x) + n) * XSTEP); \ 123 top_dst, bottom_dst, cur_x) do { \ argument 124 FUNC##32(top_y + (cur_x), r_u, r_v, top_dst + (cur_x) * XSTEP); \ 126 FUNC##32(bottom_y + (cur_x), r_u + 64, r_v + 64, \ 127 bottom_dst + (cur_x) * XSTEP); \
|
D | upsampling_neon.c | 120 #define CONVERT8(FMT, XSTEP, N, src_y, src_uv, out, cur_x) { \ argument 123 const int off = ((cur_x) + i) * XSTEP; \ 124 uint8x8_t y = vld1_u8((src_y) + (cur_x) + i); \ 153 #define CONVERT1(FUNC, XSTEP, N, src_y, src_uv, rgb, cur_x) { \ argument 156 const int off = ((cur_x) + i) * XSTEP; \ 157 const int y = src_y[(cur_x) + i]; \ 165 top_dst, bottom_dst, cur_x, len) { \ argument 166 CONVERT8(FMT, XSTEP, len, top_y, uv, top_dst, cur_x) \ 168 CONVERT8(FMT, XSTEP, len, bottom_y, (uv) + 32, bottom_dst, cur_x) \ 173 top_dst, bottom_dst, cur_x, len) { \ argument [all …]
|
/external/chromium_org/ui/gfx/ |
D | canvas_skia.cc | 341 for (int cur_x = 0; cur_x < text_bitmap.width(); cur_x++) { in DrawStringRectWithHalo() local 342 if (text_row[cur_x] == halo_premul) { in DrawStringRectWithHalo() 345 if (!PixelShouldGetHalo(text_bitmap, cur_x, cur_y, halo_premul)) in DrawStringRectWithHalo() 346 text_row[cur_x] = 0; // Make transparent. in DrawStringRectWithHalo() 348 text_row[cur_x] |= 0xff << SK_A32_SHIFT; // Make opaque. in DrawStringRectWithHalo()
|
/external/chromium_org/skia/ext/ |
D | platform_canvas_unittest.cc | 49 for (int cur_x = 0; cur_x < bitmap.width(); cur_x++) { in VerifyRect() local 50 if (cur_x >= x && cur_x < x + w && in VerifyRect() 53 if (!IsOfColor(bitmap, cur_x, cur_y, rect_color)) in VerifyRect() 57 if (!IsOfColor(bitmap, cur_x, cur_y, canvas_color)) in VerifyRect()
|
/external/opencv/cv/src/ |
D | cvemd.cpp | 754 CvNode2D head, *cur_x, *next_x, *leave_x = 0; in icvNewSolution() local 802 cur_x = &head; in icvNewSolution() 803 while( (next_x = cur_x->next[0]) != leave_x ) in icvNewSolution() 805 cur_x = next_x; in icvNewSolution() 806 assert( cur_x ); in icvNewSolution() 808 cur_x->next[0] = next_x->next[0]; in icvNewSolution() 812 cur_x = &head; in icvNewSolution() 813 while( (next_x = cur_x->next[1]) != leave_x ) in icvNewSolution() 815 cur_x = next_x; in icvNewSolution() 816 assert( cur_x ); in icvNewSolution() [all …]
|
/external/skia/gm/ |
D | blurrect.cpp | 174 int cur_x = 0; in onDraw() local 199 if (cur_x + bm.width() >= fGMWidth - fMargin) { in onDraw() 200 cur_x = 0; in onDraw() 206 canvas->translate((SkScalar)cur_x, (SkScalar)cur_y); in onDraw() 211 cur_x += bm.width() + fPadding; in onDraw()
|
/external/chromium_org/third_party/skia/gm/ |
D | blurrect.cpp | 174 int cur_x = 0; in onDraw() local 199 if (cur_x + bm.width() >= fGMWidth - fMargin) { in onDraw() 200 cur_x = 0; in onDraw() 206 canvas->translate((SkScalar)cur_x, (SkScalar)cur_y); in onDraw() 211 cur_x += bm.width() + fPadding; in onDraw()
|
/external/libhevc/decoder/ |
D | ihevcd_iquant_itrans_recon_ctb.c | 358 WORD32 cur_x, cur_y; in ihevcd_get_intra_nbr_flag() local 363 cur_x = ps_tu->b4_pos_x; in ihevcd_get_intra_nbr_flag() 367 >> (31 - (1 + cur_x - 1))) & 1; in ihevcd_get_intra_nbr_flag() 368 u1_left_avail = (pu4_intra_nbr_avail[1 + cur_y] >> (31 - (1 + cur_x - 1))) in ihevcd_get_intra_nbr_flag() 370 u1_top_avail = (pu4_intra_nbr_avail[1 + cur_y - 1] >> (31 - (1 + cur_x))) in ihevcd_get_intra_nbr_flag() 373 >> (31 - (1 + cur_x + trans_size / MIN_TU_SIZE))) & 1; in ihevcd_get_intra_nbr_flag() 375 >> (31 - (1 + cur_x - 1))) & 1; in ihevcd_get_intra_nbr_flag() 377 x_cur = ps_proc->i4_ctb_x * ctb_size + cur_x * MIN_TU_SIZE; in ihevcd_get_intra_nbr_flag()
|
/external/chromium_org/third_party/freetype/src/pshinter/ |
D | pshalgo.h | 176 FT_Pos cur_x; member
|
D | pshalgo.c | 1241 point->cur_x = point->cur_u; in psh_glyph_save_points()
|
/external/freetype/src/pshinter/ |
D | pshalgo.h | 176 FT_Pos cur_x; member
|
D | pshalgo.c | 1241 point->cur_x = point->cur_u; in psh_glyph_save_points()
|
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/pshinter/ |
D | pshalgo.h | 176 FT_Pos cur_x; member
|
D | pshalgo.c | 1241 point->cur_x = point->cur_u; in psh_glyph_save_points()
|