Home
last modified time | relevance | path

Searched refs:maxcode (Results 1 – 13 of 13) sorted by relevance

/third_party/libjpeg-turbo/
Dwrgif.c78 code_int maxcode; /* maximum code, given n_bits */ member
154 if (dinfo->free_code > dinfo->maxcode) { in output()
157 dinfo->maxcode = LZW_TABLE_SIZE; /* free_code will never exceed this */ in output()
159 dinfo->maxcode = MAXCODE(dinfo->n_bits); in output()
184 dinfo->maxcode = MAXCODE(dinfo->n_bits); in clear_block()
194 dinfo->maxcode = MAXCODE(dinfo->n_bits); in compress_init()
478 if (dest->code_counter < dest->maxcode) { in put_raw_pixel_rows()
Djdhuff.h26 JLONG maxcode[18]; /* largest code of length k (-1 if none) */ member
232 while (s > htbl->maxcode[nb]) { \
Djdhuff.c215 dtbl->maxcode[l] = huffcode[p - 1]; /* maximum code of length l */ in jpeg_make_d_derived_tbl()
217 dtbl->maxcode[l] = -1; /* -1 if no codes of this length */ in jpeg_make_d_derived_tbl()
221 dtbl->maxcode[17] = 0xFFFFFL; /* ensures jpeg_huff_decode terminates */ in jpeg_make_d_derived_tbl()
450 while (code > htbl->maxcode[l]) { in jpeg_huff_decode()
/third_party/skia/third_party/externals/libjpeg-turbo/
Dwrgif.c78 code_int maxcode; /* maximum code, given n_bits */ member
154 if (dinfo->free_code > dinfo->maxcode) { in output()
157 dinfo->maxcode = LZW_TABLE_SIZE; /* free_code will never exceed this */ in output()
159 dinfo->maxcode = MAXCODE(dinfo->n_bits); in output()
184 dinfo->maxcode = MAXCODE(dinfo->n_bits); in clear_block()
194 dinfo->maxcode = MAXCODE(dinfo->n_bits); in compress_init()
478 if (dest->code_counter < dest->maxcode) { in put_raw_pixel_rows()
Djdhuff.h26 JLONG maxcode[18]; /* largest code of length k (-1 if none) */ member
232 while (s > htbl->maxcode[nb]) { \
Djdhuff.c215 dtbl->maxcode[l] = huffcode[p - 1]; /* maximum code of length l */ in jpeg_make_d_derived_tbl()
217 dtbl->maxcode[l] = -1; /* -1 if no codes of this length */ in jpeg_make_d_derived_tbl()
221 dtbl->maxcode[17] = 0xFFFFFL; /* ensures jpeg_huff_decode terminates */ in jpeg_make_d_derived_tbl()
450 while (code > htbl->maxcode[l]) { in jpeg_huff_decode()
/third_party/ffmpeg/libavcodec/
Dlzwenc.c59 int maxcode; ///< Max value of code member
214 s->maxcode = 1 << s->maxbits; in ff_lzw_encode_init()
249 if (s->tabsize >= s->maxcode - 1) { in ff_lzw_encode()
Dwavpackenc.c2112 uint32_t maxcode = high - low, code = sample - low; in wavpack_encode_sample() local
2113 int bitcount = count_bits(maxcode); in wavpack_encode_sample()
2114 uint32_t extras = (1 << bitcount) - maxcode - 1; in wavpack_encode_sample()
/third_party/flutter/skia/third_party/externals/libjpeg-turbo/
Djdhuff.h25 JLONG maxcode[18]; /* largest code of length k (-1 if none) */ member
226 while (s > htbl->maxcode[nb]) { \
Dwrgif.c57 int maxcode; /* maximum code, given n_bits */ member
151 dinfo->maxcode = MAXCODE(dinfo->n_bits); in compress_init()
175 if (dinfo->code_counter < dinfo->maxcode) { in compress_pixel()
Djdhuff.c232 dtbl->maxcode[l] = huffcode[p - 1]; /* maximum code of length l */ in jpeg_make_d_derived_tbl()
234 dtbl->maxcode[l] = -1; /* -1 if no codes of this length */ in jpeg_make_d_derived_tbl()
238 dtbl->maxcode[17] = 0xFFFFFL; /* ensures jpeg_huff_decode terminates */ in jpeg_make_d_derived_tbl()
467 while (code > htbl->maxcode[l]) { in jpeg_huff_decode()
/third_party/skia/third_party/externals/dng_sdk/source/
Ddng_lossless_jpeg.cpp106 int32 maxcode[18]; member
213 htbl->maxcode [l] = huffcode [p - 1]; in FixHuffTbl()
219 htbl->maxcode [l] = -1; in FixHuffTbl()
226 htbl->maxcode[17] = 0xFFFFFL; in FixHuffTbl()
1641 while (code > htbl->maxcode [l]) in HuffDecode()
/third_party/ltp/testcases/kernel/fs/scsi/ltpscsi/
Dsg_err.c1180 static int maxcode = 0; in sg_print_host_status() local
1183 if (!maxcode) { in sg_print_host_status()
1185 maxcode = i - 1; in sg_print_host_status()
1188 if (host_status > maxcode) { in sg_print_host_status()