Searched refs:rangeIdx (Results 1 – 4 of 4) sorted by relevance
222 for (int rangeIdx = 0; rangeIdx < RANGES.length; rangeIdx++) { in printTable()223 double end = RANGES[rangeIdx][1]; in printTable()224 if (end == (long) end && rangeIdx != 0) { in printTable()227 for (double num = RANGES[rangeIdx][0]; num <= end; num++) { in printTable()
179 int rangeIdx = cmdCode >>> 6; in unpackCommandLookupTable() local182 if (rangeIdx >= 2) { in unpackCommandLookupTable()183 rangeIdx -= 2; in unpackCommandLookupTable()186 int insertCode = (((0x29850 >>> (rangeIdx * 2)) & 0x3) << 3) | ((cmdCode >>> 3) & 7); in unpackCommandLookupTable()187 int copyCode = (((0x26244 >>> (rangeIdx * 2)) & 0x3) << 3) | (cmdCode & 7); in unpackCommandLookupTable()
715 int rangeIdx = (int)(((uint)cmdCode) >> 6); in Decompress()717 if (rangeIdx >= 2) in Decompress()719 rangeIdx -= 2; in Decompress()722 …int insertCode = Org.Brotli.Dec.Prefix.InsertRangeLut[rangeIdx] + (((int)(((uint)cmdCode) >> 3)) &… in Decompress()723 int copyCode = Org.Brotli.Dec.Prefix.CopyRangeLut[rangeIdx] + (cmdCode & 7); in Decompress()
93 var /** number */ rangeIdx = cmdCode >>> 6;95 if (rangeIdx >= 2) {96 rangeIdx -= 2;99 …var /** number */ insertCode = (((0x29850 >>> (rangeIdx * 2)) & 0x3) << 3) | ((cmdCode >>> 3) & 7);100 var /** number */ copyCode = (((0x26244 >>> (rangeIdx * 2)) & 0x3) << 3) | (cmdCode & 7);