Lines Matching refs:space
516 D) reduce the Huffman space
519 uint32_t* symbol, uint32_t* repeat, uint32_t* space,
527 *space -= 32768U >> code_len;
547 uint32_t* repeat, uint32_t* space, uint32_t* prev_code_len,
571 *space = 0xFFFFF;
584 *space -= repeat_delta << (15 - *repeat_code_len);
599 uint32_t space = h->space;
608 while (symbol < alphabet_size && space > 0) {
617 h->space = space;
626 ProcessSingleCodeLength(code_len, &symbol, &repeat, &space,
635 &symbol, &repeat, &space, &prev_code_len, &repeat_code_len,
639 h->space = space;
648 while (h->symbol < alphabet_size && h->space > 0) {
669 ProcessSingleCodeLength(code_len, &h->symbol, &h->repeat, &h->space,
682 &h->symbol, &h->repeat, &h->space, &h->prev_code_len,
696 unsigned space = h->space;
712 h->space = space;
722 space = space - (32U >> v);
725 if (space - 1U >= 32U) {
726 /* space is 0 or wrapped around. */
731 if (!(num_codes == 1 || space == 0)) {
767 h->space = 32;
836 h->space = 32768;
852 if (h->space != 0) {
853 BROTLI_LOG(("[ReadHuffmanCode] space = %d\n", (int)h->space));