Lines Matching refs:sinv

89 INT       sinv;  in _gx_utility_8bpp_pixelmap_rotate()  local
118 sinv = _gx_utility_math_sin(GX_FIXED_VAL_MAKE(angle)); in _gx_utility_8bpp_pixelmap_rotate()
120 …s = GX_FIXED_VAL_TO_INT((mx[idxmaxx] * (srcxres + 2) * cosv - my[idxmaxx] * (srcyres + 2) * sinv)); in _gx_utility_8bpp_pixelmap_rotate()
121 …s = GX_FIXED_VAL_TO_INT((my[idxmaxy] * (srcyres + 2) * cosv + mx[idxmaxy] * (srcxres + 2) * sinv)); in _gx_utility_8bpp_pixelmap_rotate()
130 x = ((*rot_cx) - srcxres) * cosv - ((*rot_cy) - srcyres) * sinv; in _gx_utility_8bpp_pixelmap_rotate()
131 y = ((*rot_cy) - srcyres) * cosv + ((*rot_cx) - srcxres) * sinv; in _gx_utility_8bpp_pixelmap_rotate()
173 xx = (x - xres) * cosv + (y - yres) * sinv; in _gx_utility_8bpp_pixelmap_rotate()
174 yy = (y - yres) * cosv - (x - xres) * sinv; in _gx_utility_8bpp_pixelmap_rotate()
408 INT sinv; in _gx_utility_8bit_alphamap_rotate() local
448 sinv = _gx_utility_math_sin(GX_FIXED_VAL_MAKE(angle)); in _gx_utility_8bit_alphamap_rotate()
450 xres = mx[idxmaxx] * (srcxres + 2) * cosv - my[idxmaxx] * (srcyres + 2) * sinv; in _gx_utility_8bit_alphamap_rotate()
451 yres = my[idxmaxy] * (srcyres + 2) * cosv + mx[idxmaxy] * (srcxres + 2) * sinv; in _gx_utility_8bit_alphamap_rotate()
463 x = ((*rot_cx) - srcxres) * cosv - ((*rot_cy) - srcyres) * sinv; in _gx_utility_8bit_alphamap_rotate()
464 y = ((*rot_cy) - srcyres) * cosv + ((*rot_cx) - srcxres) * sinv; in _gx_utility_8bit_alphamap_rotate()
502 xx = (x - xres) * cosv + (y - yres) * sinv; in _gx_utility_8bit_alphamap_rotate()
503 yy = (y - yres) * cosv - (x - xres) * sinv; in _gx_utility_8bit_alphamap_rotate()