Lines Matching defs:fse_table
3071 /* Convert the literal length FSE table FSE_TABLE to an FSE baseline table at
3072 BASELINE_TABLE. Note that FSE_TABLE and BASELINE_TABLE will overlap. */
3076 const struct elf_zstd_fse_entry *fse_table,
3087 pfse = fse_table + count;
3089 while (pfse > fse_table)
3127 /* Convert the offset length FSE table FSE_TABLE to an FSE baseline table at
3128 BASELINE_TABLE. Note that FSE_TABLE and BASELINE_TABLE will overlap. */
3132 const struct elf_zstd_fse_entry *fse_table,
3143 pfse = fse_table + count;
3145 while (pfse > fse_table)
3190 /* Convert the match length FSE table FSE_TABLE to an FSE baseline table at
3191 BASELINE_TABLE. Note that FSE_TABLE and BASELINE_TABLE will overlap. */
3195 const struct elf_zstd_fse_entry *fse_table,
3206 pfse = fse_table + count;
3208 while (pfse > fse_table)
3473 struct elf_zstd_fse_entry *fse_table;
3485 fse_table = (struct elf_zstd_fse_entry *) (scratch + 512);
3489 if (!elf_zstd_read_fse (&pfse, pinend, scratch, 255, fse_table,
3501 FSE_TABLE. */
3522 pt = &fse_table[state1];
3532 weights[count + 1] = (unsigned char) fse_table[state2].symbol;
3559 pt = &fse_table[state2];
3569 weights[count + 1] = (unsigned char) fse_table[state1].symbol;
4310 struct elf_zstd_fse_entry *fse_table;
4314 fse_table = (struct elf_zstd_fse_entry *)table;
4316 if (!elf_zstd_read_fse (ppin, pinend, scratch, maxidx, fse_table,
4319 if (!conv (fse_table, decode->table_bits, table))