Lines Matching refs:c01
289 tColorRGBA *c00, *c01, *c10, *c11; in _zoomSurfaceRGBA() local
380 c01 = sp; in _zoomSurfaceRGBA()
392 c01--; in _zoomSurfaceRGBA()
395 c01++; in _zoomSurfaceRGBA()
403 t1 = ((((c01->r - c00->r) * ex) >> 16) + c00->r) & 0xff; in _zoomSurfaceRGBA()
406 t1 = ((((c01->g - c00->g) * ex) >> 16) + c00->g) & 0xff; in _zoomSurfaceRGBA()
409 t1 = ((((c01->b - c00->b) * ex) >> 16) + c00->b) & 0xff; in _zoomSurfaceRGBA()
412 t1 = ((((c01->a - c00->a) * ex) >> 16) + c00->a) & 0xff; in _zoomSurfaceRGBA()
641 tColorRGBA c00, c01, c10, c11, cswap; in _transformSurfaceRGBA() local
676 c01 = *sp; in _transformSurfaceRGBA()
682 cswap = c00; c00=c01; c01=cswap; in _transformSurfaceRGBA()
687 cswap = c01; c01=c11; c11=cswap; in _transformSurfaceRGBA()
694 t1 = ((((c01.r - c00.r) * ex) >> 16) + c00.r) & 0xff; in _transformSurfaceRGBA()
697 t1 = ((((c01.g - c00.g) * ex) >> 16) + c00.g) & 0xff; in _transformSurfaceRGBA()
700 t1 = ((((c01.b - c00.b) * ex) >> 16) + c00.b) & 0xff; in _transformSurfaceRGBA()
703 t1 = ((((c01.a - c00.a) * ex) >> 16) + c00.a) & 0xff; in _transformSurfaceRGBA()