HomeSort by relevance Sort by last modified time
    Searched refs:FIXED_ORDER (Results 1 - 4 of 4) sorted by null

  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_rast.h 50 #define FIXED_ORDER 4
51 #define FIXED_ONE (1<<FIXED_ORDER)
lp_setup_point.c 338 bbox.x0 = (x0 + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
339 bbox.x1 = (x0 + fixed_width + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
340 bbox.y0 = (y0 + (FIXED_ONE-1)) >> FIXED_ORDER;
341 bbox.y1 = (y0 + fixed_width + (FIXED_ONE-1)) >> FIXED_ORDER;
lp_setup_line.c 548 bbox.x0 = (MIN4(x[0], x[1], x[2], x[3]) + (FIXED_ONE-1)) >> FIXED_ORDER;
549 bbox.x1 = (MAX4(x[0], x[1], x[2], x[3]) + (FIXED_ONE-1)) >> FIXED_ORDER;
550 bbox.y0 = (MIN4(y[0], y[1], y[2], y[3]) + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
551 bbox.y1 = (MAX4(y[0], y[1], y[2], y[3]) + (FIXED_ONE-1) + adj) >> FIXED_ORDER;
lp_setup_tri.c 273 bbox.x0 = MIN3(position->x[0], position->x[1], position->x[2]) >> FIXED_ORDER;
274 bbox.x1 = (MAX3(position->x[0], position->x[1], position->x[2]) - 1) >> FIXED_ORDER;
277 bbox.y0 = (MIN3(position->y[0], position->y[1], position->y[2]) + adj) >> FIXED_ORDER;
278 bbox.y1 = (MAX3(position->y[0], position->y[1], position->y[2]) - 1 + adj) >> FIXED_ORDER;
384 dcdx = _mm_slli_epi32(dcdx, FIXED_ORDER);
385 dcdy = _mm_slli_epi32(dcdy, FIXED_ORDER);

Completed in 46 milliseconds