Lines Matching full:offsets
28 * of labels and the 7 higher order bytes store per-label offsets.
30 private long offsets;
53 /** The maximum number of cached offsets */
90 offsets &= (~(0xFFL << shift));
91 offsets |= ((long)offset << shift);
102 return ((int)(offsets >>> shift) & 0xFF);
113 offsets &= ~(0xFF);
114 offsets |= labels;
119 return (int)(offsets & 0xFF);
126 dst.offsets = src.offsets;