Lines Matching defs:table
427 BROTLI_BOOL is_last, int* table, size_t table_bits, uint8_t cmd_depth[128],
539 table[hash] = (int)(ip - base_ip);
543 candidate = base_ip + table[hash];
547 table[hash] = (int)(ip - base_ip);
602 compression we first update "table" with the hashes of some positions
608 table[prev_hash] = (int)(ip - base_ip - 3);
610 table[prev_hash] = (int)(ip - base_ip - 2);
612 table[prev_hash] = (int)(ip - base_ip - 1);
614 candidate = base_ip + table[cur_hash];
615 table[cur_hash] = (int)(ip - base_ip);
639 compression we first update "table" with the hashes of some positions
645 table[prev_hash] = (int)(ip - base_ip - 3);
647 table[prev_hash] = (int)(ip - base_ip - 2);
649 table[prev_hash] = (int)(ip - base_ip - 1);
651 candidate = base_ip + table[cur_hash];
652 table[cur_hash] = (int)(ip - base_ip);
736 BROTLI_BOOL is_last, int* table, uint8_t cmd_depth[128], \
739 BrotliCompressFragmentFastImpl(m, input, input_size, is_last, table, B, \
747 BROTLI_BOOL is_last, int* table, size_t table_size, uint8_t cmd_depth[128],
765 m, input, input_size, is_last, table, cmd_depth, cmd_bits, \