Searched refs:IMUL64 (Results 1 – 5 of 5) sorted by relevance
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_rast_tri_tmp.h | 69 …int64_t new_c = (c[j]) + ((IMUL64(task->scene->fixed_sample_pos[s][1], plane[j].dcdy) + IMUL64(tas… in TAG() 122 const int64_t dcdx = -IMUL64(plane[j].dcdx, 4); in TAG() 123 const int64_t dcdy = IMUL64(plane[j].dcdy, 4); in TAG() 124 const int64_t cox = IMUL64(plane[j].eo, 4); in TAG() 126 const int64_t cio = IMUL64(ei, 4) - 1; in TAG() 170 - IMUL64(plane[j].dcdx, ix) in TAG() 171 + IMUL64(plane[j].dcdy, iy)); in TAG() 222 c[j] = plane[j].c + IMUL64(plane[j].dcdy, y) - IMUL64(plane[j].dcdx, x); in TAG() 320 - IMUL64(plane[j].dcdx, ix) in TAG() 321 + IMUL64(plane[j].dcdy, iy)); in TAG()
|
D | lp_rast_debug.c | 209 IMUL64(plane[nr_planes].dcdy, tiley) - in debug_triangle() 210 IMUL64(plane[nr_planes].dcdx, tilex)); in debug_triangle() 231 plane[i].c += IMUL64(plane[i].dcdx, TILE_SIZE); in debug_triangle()
|
D | lp_setup_tri.c | 611 plane[i].c = IMUL64(plane[i].dcdx, position->x[i]) - in do_triangle_ccw() 612 IMUL64(plane[i].dcdy, position->y[i]); in do_triangle_ccw() 901 IMUL64(plane[i].dcdy, iy0) * TILE_SIZE - in lp_setup_bin_triangle() 902 IMUL64(plane[i].dcdx, ix0) * TILE_SIZE); in lp_setup_bin_triangle() 1083 position->area = IMUL64(position->dx01, position->dy20) - in calc_fixed_position() 1084 IMUL64(position->dx20, position->dy01); in calc_fixed_position()
|
D | lp_rast.h | 71 #define IMUL64(a, b) (((int64_t)(a)) * ((int64_t)(b))) macro
|
D | lp_setup_line.c | 664 plane[i].c = IMUL64(plane[i].dcdx, x[i]) - IMUL64(plane[i].dcdy, y[i]); in try_setup_line()
|