Searched defs:sxinc (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;
108 if (sxinc == 0) {
112 while ((1 << shift) > sxinc) {
279 jint sxinc, syinc, shift; local
325 sxinc = (sx2 - sx1) | (sy2 - sy1);
327 if (sxinc > 0) {
328 while ((sxinc <<= 1) > 0) {
339 * But we also need to worry about overflow of the sxinc an
[all...]

Completed in 29 milliseconds