Searched refs:shift (Results 1 - 25 of 233) sorted by relevance

12345678910

/openjdk7/jdk/src/share/classes/sun/io/
H A DCharToByteJIS0201.java44 super.shift = 8;
52 return (byte)index2.charAt(index1[(inputChar & mask1) >> shift]
57 if (index2.charAt(index1[((ch & mask1) >> shift)] + (ch & mask2)) != '\u0000')
H A DCharToByteCp037.java47 super.shift = 8;
H A DCharToByteCp1006.java47 super.shift = 8;
H A DCharToByteCp1025.java47 super.shift = 8;
H A DCharToByteCp1026.java47 super.shift = 8;
H A DCharToByteCp1046.java47 super.shift = 8;
H A DCharToByteCp1047.java47 super.shift = 8;
H A DCharToByteCp1097.java47 super.shift = 8;
H A DCharToByteCp1098.java47 super.shift = 8;
H A DCharToByteCp1112.java47 super.shift = 8;
H A DCharToByteCp1122.java47 super.shift = 8;
H A DCharToByteCp1123.java47 super.shift = 8;
H A DCharToByteCp1124.java47 super.shift = 8;
H A DCharToByteCp1140.java52 super.shift = 8;
H A DCharToByteCp1141.java52 super.shift = 8;
H A DCharToByteCp1142.java52 super.shift = 8;
H A DCharToByteCp1143.java52 super.shift = 8;
H A DCharToByteCp1144.java52 super.shift = 8;
H A DCharToByteCp1145.java52 super.shift = 8;
H A DCharToByteCp1146.java52 super.shift = 8;
H A DCharToByteCp1147.java52 super.shift = 8;
H A DCharToByteCp1148.java52 super.shift = 8;
H A DCharToByteCp1149.java52 super.shift = 8;
H A DCharToByteCp1250.java48 super.shift = 8;
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DMetaMessage.java233 int shift=63; // number of bitwise left-shifts of mask
235 while ((shift > 0) && ((value & (mask << shift)) == 0)) shift-=7;
237 while (shift > 0) {
238 data[off++]=(byte) (((value & (mask << shift)) >> shift) | 0x80);
239 shift-=7;

Completed in 141 milliseconds

12345678910