Searched refs:DISTANCE_MASK (Results 1 – 3 of 3) sorted by relevance
20 buf[i] += history[(distance + pos) & DISTANCE_MASK]; in decode()21 history[pos-- & DISTANCE_MASK] = buf[i]; in decode()
19 byte tmp = history[(distance + pos) & DISTANCE_MASK]; in encode()20 history[pos-- & DISTANCE_MASK] = in[in_off + i]; in encode()
15 static final int DISTANCE_MASK = DISTANCE_MAX - 1; field in DeltaCoder