Lines Matching refs:shift
28 * is applied after determining and applying a shift that minimizes
45 // bogus shift, no data
53 // determine shift for minimum number of escapes
54 int shift = 1;
63 shift = i;
73 out.append((char)shift);
75 // apply shift
76 char c = (char)((a[i] - shift)&0xff);
167 // first element is the shift
170 int shift = s.charAt(i++);
186 // do shift
187 result[j++] = (byte)((c + shift) & 0xff);