Lines Matching defs:copylen
226 static BROTLI_INLINE void EmitCopyLen(size_t copylen,
232 if (copylen < 10) {
234 depth[copylen + 14], bits[copylen + 14], storage_ix, storage);
235 ++histo[copylen + 14];
236 } else if (copylen < 134) {
237 const size_t tail = copylen - 6;
244 } else if (copylen < 2118) {
245 const size_t tail = copylen - 70;
253 BrotliWriteBits(24, copylen - 2118, storage_ix, storage);
258 static BROTLI_INLINE void EmitCopyLenLastDistance(size_t copylen,
264 if (copylen < 12) {
265 BrotliWriteBits(depth[copylen - 4], bits[copylen - 4], storage_ix, storage);
266 ++histo[copylen - 4];
267 } else if (copylen < 72) {
268 const size_t tail = copylen - 8;
275 } else if (copylen < 136) {
276 const size_t tail = copylen - 8;
283 } else if (copylen < 2120) {
284 const size_t tail = copylen - 72;
294 BrotliWriteBits(24, copylen - 2120, storage_ix, storage);