Searched refs:shift (Results 76 - 100 of 233) sorted by relevance

12345678910

/openjdk7/jdk/src/share/classes/sun/io/
H A DCharToByteISO8859_5.java47 super.shift = 8;
H A DCharToByteISO8859_6.java48 super.shift = 8;
H A DCharToByteISO8859_7.java48 super.shift = 8;
H A DCharToByteISO8859_8.java47 super.shift = 8;
H A DCharToByteISO8859_9.java47 super.shift = 8;
H A DCharToByteKOI8_R.java47 super.shift = 8;
H A DCharToByteMS874.java48 super.shift = 8;
H A DCharToByteMacArabic.java47 super.shift = 8;
H A DCharToByteMacCentralEurope.java47 super.shift = 8;
H A DCharToByteMacCroatian.java47 super.shift = 8;
H A DCharToByteMacCyrillic.java47 super.shift = 8;
H A DCharToByteMacDingbat.java47 super.shift = 8;
H A DCharToByteMacGreek.java47 super.shift = 8;
H A DCharToByteMacHebrew.java47 super.shift = 8;
H A DCharToByteMacIceland.java47 super.shift = 8;
H A DCharToByteMacRoman.java47 super.shift = 8;
H A DCharToByteMacRomania.java47 super.shift = 8;
H A DCharToByteMacSymbol.java47 super.shift = 8;
H A DCharToByteMacThai.java47 super.shift = 8;
H A DCharToByteMacTurkish.java47 super.shift = 8;
H A DCharToByteMacUkraine.java47 super.shift = 8;
H A DCharToByteTIS620.java47 super.shift = 8;
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DMultiPixelPackedSampleModel.java59 * int shift = dataElementSize - (bitnum & (dataElementSize-1))
61 * int pixel = (element >> shift) & ((1 << pixelBitStride) - 1);
364 int shift = dataElementSize - (bitnum & (dataElementSize-1))
366 return (element >> shift) & bitMask;
394 int shift = dataElementSize - (bitnum & (dataElementSize-1))
397 element &= ~(bitMask << shift);
398 element |= (s & bitMask) << shift;
460 int shift = dataElementSize - (bitnum & (dataElementSize-1))
477 bdata[0] = (byte)((element >> shift) & bitMask);
493 sdata[0] = (short)((element >> shift)
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DScaledBlit.c38 * shift - number of bits of sub-pixel precision in scaled values
47 * 5. fetch and process pixel for (srcx >> shift, srcy >> shift)
60 * If the error ever reaches a magnitude of (1 << shift) then we
73 * - (1 << shift)
94 findpow2tilesize(jint shift, jint sxinc, jint syinc) argument
97 * The initial value of shift is our first estimate for
101 * Reducing it until (1 << shift) is not larger than the
112 while ((1 << shift) > sxinc) {
113 shift
279 jint sxinc, syinc, shift; local
[all...]
/openjdk7/hotspot/test/compiler/6636138/
H A DTest2.java29 * @run main/othervm -Xbatch -XX:CompileOnly=Test2.shift Test2
40 public static void shift(int src[]) { method in class:Test2
41 //left-shift the array
62 shift(src);

Completed in 147 milliseconds

12345678910