Home | History | Annotate | Download | only in cst

Lines Matching refs:bits

24     /** the value as {@code long} bits */
25 private final long bits;
30 * @param bits the value as {@code long} bits
32 /*package*/ CstLiteral64(long bits) {
33 this.bits = bits;
41 bits == ((CstLiteral64) other).bits;
47 return (int) bits ^ (int) (bits >> 32);
53 long otherBits = ((CstLiteral64) other).bits;
55 if (bits < otherBits) {
57 } else if (bits > otherBits) {
73 return (int) bits == bits;
79 return (int) bits;
85 return bits;