Searched defs:syinc (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DScaledBlit.c94 findpow2tilesize(jint shift, jint sxinc, jint syinc) argument
105 if (sxinc > syinc) {
106 sxinc = syinc;
279 jint sxinc, syinc, shift; local
339 * But we also need to worry about overflow of the sxinc and syinc
341 * cannot overflow a jint, and the only time that sxinc and syinc
355 syinc = (yunderflow ? ((sy2 - sy1) << shift) : (jint) scaley);
359 tilesize = findpow2tilesize(shift, sxinc, syinc);
413 (srcInfo.bounds.y1-sy1) << shift, syinc));
415 (srcInfo.bounds.y2-sy1) << shift, syinc);
[all...]

Completed in 1603 milliseconds