Home
last modified time | relevance | path

Searched refs:poly_base_shift (Results 1 – 3 of 3) sorted by relevance

/external/pdfium/third_party/agg23/
Dagg_rasterizer_scanline_aa.cpp165 int ex1 = x1 >> poly_base_shift; in render_hline()
166 int ex2 = x2 >> poly_base_shift; in render_hline()
227 enum dx_limit_e { dx_limit = 16384 << poly_base_shift }; in render_line()
236 int ey1 = y1 >> poly_base_shift; in render_line()
237 int ey2 = y2 >> poly_base_shift; in render_line()
248 int ex = x1 >> poly_base_shift; in render_line()
249 int two_fx = (x1 - (ex << poly_base_shift)) << 1; in render_line()
295 set_cur_cell(x_from >> poly_base_shift, ey1); in render_line()
319 set_cur_cell(x_from >> poly_base_shift, ey1); in render_line()
329 set_cur_cell(x >> poly_base_shift, y >> poly_base_shift); in move_to()
Dagg_rasterizer_scanline_aa.h44 poly_base_shift = 8, enumerator
45 poly_base_size = 1 << poly_base_shift,
283 int cover = area >> (poly_base_shift * 2 + 1 - 8); in calculate_alpha()
352 alpha = calculate_alpha((cover << (poly_base_shift + 1)) - area, no_smooth); in sweep_scanline()
359 alpha = calculate_alpha(cover << (poly_base_shift + 1), no_smooth); in sweep_scanline()
D0003-ubsan-render-line-error.patch54 set_cur_cell(x_from >> poly_base_shift, ey1);