src/share/classes/com/sun/tools/javac/util/Bits.java

changeset 2566
58e7e71b302e
parent 2027
4932bb04c4b8
child 2702
9ca8d8713094
child 2820
7f6d6b80a58b
equal deleted inserted replaced
2565:4ac623ddd8d0 2566:58e7e71b302e
82 } 82 }
83 } 83 }
84 84
85 } 85 }
86 86
87 public enum BitsOpKind {
88 INIT,
89 CLEAR,
90 INCL_BIT,
91 EXCL_BIT,
92 ASSIGN,
93 AND_SET,
94 OR_SET,
95 DIFF_SET,
96 XOR_SET,
97 INCL_RANGE,
98 EXCL_RANGE,
99 }
100
87 private final static int wordlen = 32; 101 private final static int wordlen = 32;
88 private final static int wordshift = 5; 102 private final static int wordshift = 5;
89 private final static int wordmask = wordlen - 1; 103 private final static int wordmask = wordlen - 1;
90 104
91 public int[] bits = null; 105 public int[] bits = null;

mercurial