Home
last modified time | relevance | path

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

/external/syslinux/com32/lib/jpeg/
Dtinyjpeg.c226 uint16_t *slowtable; in get_next_huffman_code() local
243 slowtable = huffman_table->slowtable[extra_nbits]; in get_next_huffman_code()
245 while (slowtable[0]) { in get_next_huffman_code()
246 if (slowtable[0] == hcode) { in get_next_huffman_code()
248 return slowtable[1]; in get_next_huffman_code()
250 slowtable+=2; in get_next_huffman_code()
350 table->slowtable[i][0] = 0; in build_huffman_table()
397 uint16_t *slowtable = table->slowtable[code_size-HUFFMAN_HASH_NBITS-1]; in build_huffman_table() local
398 while(slowtable[0]) in build_huffman_table()
399 slowtable+=2; in build_huffman_table()
[all …]
Dtinyjpeg-internal.h64 uint16_t slowtable[16-HUFFMAN_HASH_NBITS][256]; member