Searched refs:decode_table (Results 1 – 6 of 6) sorted by relevance
/Linux-v6.1/fs/ntfs3/lib/ |
D | decompress_common.c | 108 int make_huffman_decode_table(u16 decode_table[], const u32 num_syms, in make_huffman_decode_table() argument 168 memset(decode_table, 0, in make_huffman_decode_table() 169 table_num_entries * sizeof(decode_table[0])); in make_huffman_decode_table() 200 decode_table_ptr = decode_table; in make_huffman_decode_table() 228 decode_table_pos = (u16 *)decode_table_ptr - decode_table; in make_huffman_decode_table() 242 decode_table[j] = 0; in make_huffman_decode_table() 292 if (decode_table[node_idx] == 0) { in make_huffman_decode_table() 293 decode_table[node_idx] = in make_huffman_decode_table() 295 decode_table[next_free_tree_slot++] = 0; in make_huffman_decode_table() 296 decode_table[next_free_tree_slot++] = 0; in make_huffman_decode_table() [all …]
|
D | xpress_decompress.c | 24 u16 decode_table[(1 << XPRESS_TABLEBITS) + 2 * XPRESS_NUM_SYMBOLS]; member 78 if (make_huffman_decode_table(d->decode_table, XPRESS_NUM_SYMBOLS, in xpress_decompress() 95 sym = read_huffsym(&is, d->decode_table, in xpress_decompress()
|
D | decompress_common.h | 198 extern int make_huffman_decode_table(u16 decode_table[], const u32 num_syms, 209 const u16 decode_table[], in read_huffsym() argument 220 entry = decode_table[key_bits]; in read_huffsym() 238 } while ((entry = decode_table[key_bits]) >= 0xC000); in read_huffsym()
|
/Linux-v6.1/arch/arm/probes/ |
D | decode.c | 334 [DECODE_TYPE_TABLE] = sizeof(struct decode_table), 464 struct decode_table *d = (struct decode_table *)h; in probes_decode_insn()
|
D | decode.h | 310 struct decode_table { struct
|
/Linux-v6.1/arch/arm/probes/kprobes/ |
D | test-core.c | 588 [DECODE_TYPE_TABLE] = sizeof(struct decode_table), 648 struct decode_table *d = (struct decode_table *)h; in table_test_fn() 753 struct decode_table *d = (struct decode_table *)h; in coverage_start_fn()
|