Searched refs:IMUL64 (Results 1 – 5 of 5) sorted by relevance
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_rast_tri_tmp.h | 101 const int64_t dcdx = -IMUL64(plane[j].dcdx, 4); in TAG() 102 const int64_t dcdy = IMUL64(plane[j].dcdy, 4); in TAG() 103 const int64_t cox = IMUL64(plane[j].eo, 4); in TAG() 105 const int64_t cio = IMUL64(ei, 4) - 1; in TAG() 149 - IMUL64(plane[j].dcdx, ix) in TAG() 150 + IMUL64(plane[j].dcdy, iy)); in TAG() 201 c[j] = plane[j].c + IMUL64(plane[j].dcdy, y) - IMUL64(plane[j].dcdx, x); in TAG() 299 - IMUL64(plane[j].dcdx, ix) in TAG() 300 + 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 | 603 plane[i].c = IMUL64(plane[i].dcdx, position->x[i]) - in do_triangle_ccw() 604 IMUL64(plane[i].dcdy, position->y[i]); in do_triangle_ccw() 884 IMUL64(plane[i].dcdy, iy0) * TILE_SIZE - in lp_setup_bin_triangle() 885 IMUL64(plane[i].dcdx, ix0) * TILE_SIZE); in lp_setup_bin_triangle() 1064 position->area = IMUL64(position->dx01, position->dy20) - in calc_fixed_position() 1065 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 | 668 plane[i].c = IMUL64(plane[i].dcdx, x[i]) - IMUL64(plane[i].dcdy, y[i]); in try_setup_line()
|