Searched refs:Ey (Results 1 - 4 of 4) sorted by relevance

/xsrc/external/mit/xf86-video-intel/dist/src/sna/
H A Dsna_trapezoids_precise.c546 int64_t Ey, Ex, tmp; local in function:polygon_add_edge
557 Ey = ((int64_t)edge->p2.y - edge->p1.y) * SAMPLES_Y * (2 << 16);
558 assert(Ey > 0);
559 e->dxdy.quo = Ex * (2 << 16) / Ey;
560 e->dxdy.rem = Ex * (2 << 16) % Ey;
565 e->x.quo = tmp / Ey;
566 e->x.rem = tmp % Ey;
572 if (Ey < INT64_MAX >> 16)
573 tmp = (tmp * Ey) / (1 << 16);
575 tmp = tmp * (Ey / (
656 int64_t Ey, Ex, tmp; local in function:polygon_add_line
[all...]
H A Dsna_trapezoids_imprecise.c501 int64_t Ex, Ey, tmp; local in function:polygon_add_edge
504 Ey = ((int64_t)edge->p2.y - edge->p1.y) * FAST_SAMPLES_Y * (2 << 16);
505 assert(Ey > 0);
507 e->dxdy.quo = Ex * (2 << 16) / Ey;
508 e->dxdy.rem = Ex * (2 << 16) % Ey;
513 e->x.quo = tmp / Ey;
514 e->x.rem = tmp % Ey;
520 if (Ey < INT64_MAX >> 16)
521 tmp = (tmp * Ey) / (1 << 16);
523 tmp = tmp * (Ey / (
595 int64_t Ex, Ey, tmp; local in function:polygon_add_line
[all...]
/xsrc/external/mit/xf86-video-intel-2014/dist/src/sna/
H A Dsna_trapezoids_precise.c546 int64_t Ey, Ex, tmp; local in function:polygon_add_edge
557 Ey = ((int64_t)edge->p2.y - edge->p1.y) * SAMPLES_Y * (2 << 16);
558 assert(Ey > 0);
559 e->dxdy.quo = Ex * (2 << 16) / Ey;
560 e->dxdy.rem = Ex * (2 << 16) % Ey;
565 e->x.quo = tmp / Ey;
566 e->x.rem = tmp % Ey;
572 if (Ey < INT64_MAX >> 16)
573 tmp = (tmp * Ey) / (1 << 16);
575 tmp = tmp * (Ey / (
656 int64_t Ey, Ex, tmp; local in function:polygon_add_line
[all...]
H A Dsna_trapezoids_imprecise.c501 int64_t Ex, Ey, tmp; local in function:polygon_add_edge
504 Ey = ((int64_t)edge->p2.y - edge->p1.y) * FAST_SAMPLES_Y * (2 << 16);
505 assert(Ey > 0);
507 e->dxdy.quo = Ex * (2 << 16) / Ey;
508 e->dxdy.rem = Ex * (2 << 16) % Ey;
513 e->x.quo = tmp / Ey;
514 e->x.rem = tmp % Ey;
520 if (Ey < INT64_MAX >> 16)
521 tmp = (tmp * Ey) / (1 << 16);
523 tmp = tmp * (Ey / (
595 int64_t Ex, Ey, tmp; local in function:polygon_add_line
[all...]

Completed in 19 milliseconds