Lines Matching refs:copyLength
998 …s.copyLength = copyLengthOffset + ((extraBits <= 16) ? readFewBits(s, extraBits) : readManyBits(s,…
1112 if (s.copyLength > s.metaBlockLength) {
1120 var /** number */ copyLength = s.copyLength - s.j;
1121 var /** number */ srcEnd = src + copyLength;
1122 var /** number */ dstEnd = dst + copyLength;
1124 if (copyLength < 12 || (srcEnd > dst && dstEnd > src)) {
1125 for (var /** number */ k = 0; k < copyLength; k += 4) {
1134 s.j += copyLength;
1135 s.metaBlockLength -= copyLength;
1136 s.pos += copyLength;
1138 for (; s.j < s.copyLength; ) {
1158 if (s.copyLength >= 4 && s.copyLength <= 24) {
1159 var /** number */ offset = DICTIONARY_OFFSETS_BY_LENGTH[s.copyLength];
1161 var /** number */ shift = DICTIONARY_SIZE_BITS_BY_LENGTH[s.copyLength];
1165 offset += wordIdx * s.copyLength;
1167 … transformDictionaryWord(ringBuffer, s.pos, DICTIONARY_DATA, offset, s.copyLength, RFC_TRANSFORMS,…
1870 this.copyLength = 0;