Home
last modified time | relevance | path

Searched refs:decode_table (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/libarchive/libarchive/
H A Darchive_read_support_format_rar5.c190 struct decode_table { struct
249 struct decode_table bd; /* huffman bit lengths */
251 struct decode_table ld; /* literals */
253 struct decode_table dd; /* distances */
255 struct decode_table ldd; /* lower bits of distances */
257 struct decode_table rd; /* repeating distances */
2618 struct decode_table* table, int size) in create_decode_tables()
2684 static int decode_number(struct archive_read* a, struct decode_table* table, in decode_number()
H A Darchive_read_support_format_tar.c3617 static unsigned char decode_table[128]; in base64_decode() local
3622 if (decode_table[digits[1]] != 1) { in base64_decode()
3624 memset(decode_table, 0xff, sizeof(decode_table)); in base64_decode()
3626 decode_table[digits[i]] = i; in base64_decode()
3650 || decode_table[*src] == 0xff) { in base64_decode()
3656 v |= decode_table[*src++]; in base64_decode()