Lines Matching refs:code
64 /* Builds a literal prefix code into "depths" and "bits" based on the statistics
66 Note that the prefix code here is built from the pre-LZ77 input, therefore
71 with generated code. */
125 /* Builds a command and distance prefix code (each 64 symbols) into "depth" and
184 const size_t code = insertlen + 40;
185 BrotliWriteBits(depth[code], bits[code], storage_ix, storage);
186 ++histo[code];
198 const size_t code = nbits + 50;
199 BrotliWriteBits(depth[code], bits[code], storage_ix, storage);
201 ++histo[code];
240 const size_t code = (nbits << 1) + prefix + 20;
241 BrotliWriteBits(depth[code], bits[code], storage_ix, storage);
243 ++histo[code];
247 const size_t code = nbits + 28;
248 BrotliWriteBits(depth[code], bits[code], storage_ix, storage);
250 ++histo[code];
271 const size_t code = (nbits << 1) + prefix + 4;
272 BrotliWriteBits(depth[code], bits[code], storage_ix, storage);
274 ++histo[code];
277 const size_t code = (tail >> 5) + 30;
278 BrotliWriteBits(depth[code], bits[code], storage_ix, storage);
281 ++histo[code];
286 const size_t code = nbits + 28;
287 BrotliWriteBits(depth[code], bits[code], storage_ix, storage);
290 ++histo[code];