Searched refs:poly_base_shift (Results 1 – 5 of 5) sorted by relevance
/external/pdfium/third_party/agg23/ |
D | 0004-ubsan-sweep-scanline-error.patch | 33 - alpha = calculate_alpha((cover << (poly_base_shift + 1)) - area, no_smooth); 34 + unsigned alpha = calculate_alpha(calculate_area(cover, poly_base_shift + 1) - … 41 - alpha = calculate_alpha(cover << (poly_base_shift + 1), no_smooth); 42 + unsigned alpha = calculate_alpha(calculate_area(cover, poly_base_shift + 1), n…
|
D | agg_rasterizer_scanline_aa.cpp | 165 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()
|
D | agg_rasterizer_scanline_aa.h | 44 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() 370 … unsigned alpha = calculate_alpha(calculate_area(cover, poly_base_shift + 1) - area, no_smooth); in sweep_scanline() 377 … unsigned alpha = calculate_alpha(calculate_area(cover, poly_base_shift + 1), no_smooth); in sweep_scanline()
|
D | 0006-ubsan-sweep-scanline-error.patch | 62 … unsigned alpha = calculate_alpha(calculate_area(cover, poly_base_shift + 1) - area, no_smooth);
|
D | 0003-ubsan-render-line-error.patch | 54 set_cur_cell(x_from >> poly_base_shift, ey1);
|