Home
last modified time | relevance | path

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

/dflybsd-src/contrib/libarchive/libarchive/
H A Darchive_read_support_format_tar.c2829 static unsigned char decode_table[128]; in base64_decode() local
2834 if (decode_table[digits[1]] != 1) { in base64_decode()
2836 memset(decode_table, 0xff, sizeof(decode_table)); in base64_decode()
2838 decode_table[digits[i]] = i; in base64_decode()
2862 || decode_table[*src] == 0xff) { in base64_decode()
2868 v |= decode_table[*src++]; in base64_decode()
H A Darchive_read_support_format_rar5.c187 struct decode_table { struct
242 struct decode_table bd; /* huffman bit lengths */
244 struct decode_table ld; /* literals */
246 struct decode_table dd; /* distances */
248 struct decode_table ldd; /* lower bits of distances */
250 struct decode_table rd; /* repeating distances */
2492 struct decode_table* table, int size) in create_decode_tables()
2558 static int decode_number(struct archive_read* a, struct decode_table* table, in decode_number()