Lines Matching defs:bits
59 Brotli specifies a maximum depth of 15 bits for "code trees"
60 and 7 bits for "code length code trees."
145 /* We need to pack the Huffman tree in tree_limit bits. If this was not
457 static uint16_t BrotliReverseBits(size_t num_bits, uint16_t bits) {
462 size_t retval = kLut[bits & 0x0F];
466 bits = (uint16_t)(bits >> 4);
467 retval |= kLut[bits & 0x0F];
473 /* 0..15 are values for bits */
478 uint16_t* bits) {
496 bits[i] = BrotliReverseBits(depth[i], next_code[depth[i]]++);