Searched refs:dshift (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Djava2d_Mlib.c394 jint dshift = MLIB_SHIFT - shift; \
395 sxloc <<= dshift; \
396 syloc <<= dshift; \
397 sxinc <<= dshift; \
398 syinc <<= dshift; \
400 jint dshift = shift - MLIB_SHIFT; \
401 sxloc >>= dshift; \
402 syloc >>= dshift; \
403 sxinc >>= dshift; \
404 syinc >>= dshift; \
[all...]
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpngrutil.c2960 int sshift, dshift; local
2971 dshift = (int)((final_width + 7) & 0x07);
2981 dshift = 7 - (int)((final_width + 7) & 0x07);
2992 *dp &= (png_byte)((0x7f7f >> (7 - dshift)) & 0xff);
2993 *dp |= (png_byte)(v << dshift);
2995 if (dshift == s_end)
2997 dshift = s_start;
3002 dshift += s_inc;
3021 int sshift, dshift; local
3030 dshift
3083 int sshift, dshift; local
[all...]
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.c2998 mp_digit dshift, bshift; local
3003 dshift = d / MP_DIGIT_BIT;
3009 if (MP_OKAY != (res = s_mp_pad(mp, MP_USED(mp) + dshift + (mask != 0) )))
3012 if (dshift && MP_OKAY != (res = s_mp_lshd(mp, dshift)))
3020 for (pa += dshift; pa < alim; ) {

Completed in 36 milliseconds