Lines Matching defs:lastOcc
5283 int[] lastOcc;
5308 int[] lastOcc = new int[128];
5314 lastOcc[src[i]&0x7F] = i + 1;
5341 return new BnMS(src, lastOcc, optoSft, node.next);
5342 return new BnM(src, lastOcc, optoSft, node.next);
5344 BnM(int[] src, int[] lastOcc, int[] optoSft, Node next) {
5346 this.lastOcc = lastOcc;
5363 i += Math.max(j + 1 - lastOcc[ch&0x7F], optoSft[j]);
5398 BnMS(int[] src, int[] lastOcc, int[] optoSft, Node next) {
5399 super(src, lastOcc, optoSft, next);
5419 int n = Math.max(x + 1 - lastOcc[ch&0x7F], optoSft[x]);