Searched refs:decode_table (Results 1 – 2 of 2) sorted by relevance
187 struct decode_table { struct246 struct decode_table bd; /* huffman bit lengths */248 struct decode_table ld; /* literals */250 struct decode_table dd; /* distances */252 struct decode_table ldd; /* lower bits of distances */254 struct decode_table rd; /* repeating distances */2541 struct decode_table* table, int size) in create_decode_tables()2607 static int decode_number(struct archive_read* a, struct decode_table* table, in decode_number()
3493 static unsigned char decode_table[128]; in base64_decode() local3498 if (decode_table[digits[1]] != 1) { in base64_decode()3500 memset(decode_table, 0xff, sizeof(decode_table)); in base64_decode()3502 decode_table[digits[i]] = i; in base64_decode()3526 || decode_table[*src] == 0xff) { in base64_decode()3532 v |= decode_table[*src++]; in base64_decode()