Home | History | Annotate | Download | only in enc

Lines Matching refs:table

238     size_t block_size, size_t input_size, const uint8_t* base_ip, int* table,
299 table[hash] = (int)(ip - base_ip);
303 candidate = base_ip + table[hash];
307 table[hash] = (int)(ip - base_ip);
347 compression we first update "table" with the hashes of some
352 table[prev_hash] = (int)(ip - base_ip - 5);
354 table[prev_hash] = (int)(ip - base_ip - 4);
356 table[prev_hash] = (int)(ip - base_ip - 3);
360 table[prev_hash] = (int)(ip - base_ip - 2);
362 table[prev_hash] = (int)(ip - base_ip - 1);
364 candidate = base_ip + table[cur_hash];
365 table[cur_hash] = (int)(ip - base_ip);
387 compression we first update "table" with the hashes of some
392 table[prev_hash] = (int)(ip - base_ip - 5);
394 table[prev_hash] = (int)(ip - base_ip - 4);
396 table[prev_hash] = (int)(ip - base_ip - 3);
400 table[prev_hash] = (int)(ip - base_ip - 2);
402 table[prev_hash] = (int)(ip - base_ip - 1);
404 candidate = base_ip + table[cur_hash];
405 table[cur_hash] = (int)(ip - base_ip);
529 int* table, size_t table_bits, size_t* storage_ix, uint8_t* storage) {
541 CreateCommands(input, block_size, input_size, base_ip, table, table_bits,
570 int* table, size_t* storage_ix, uint8_t* storage) { \
572 literal_buf, table, B, storage_ix, storage); \
580 int* table, size_t table_size, size_t* storage_ix, uint8_t* storage) {
588 literal_buf, table, storage_ix, storage); \