Home
last modified time | relevance | path

Searched refs:next_code (Results 1 – 25 of 1318) sorted by relevance

12345678910>>...53

/dports/graphics/mupdf/mupdf-1.18.0-source/source/fitz/
H A Dfilter-lzw.c63 int next_code = lzw->next_code; in next_lzwd() local
105 next_code = LZW_FIRST(lzw); in next_lzwd()
119 next_code++; in next_lzwd()
121 else if (code > next_code || (!lzw->old_tiff && next_code >= NUM_CODES)) in next_lzwd()
125 else if (next_code < NUM_CODES) in next_lzwd()
131 if (code < next_code) in next_lzwd()
133 else if (code == next_code) in next_lzwd()
134 table[next_code].value = table[next_code].first_char; in next_lzwd()
138 next_code ++; in next_lzwd()
182 lzw->next_code = next_code; in next_lzwd()
[all …]
/dports/x11-toolkits/plib/plib-1.8.5/src/psl/
H A DpslCompiler.cxx88 next_code = 0 ; in cleanup()
153 setCodeSymbol ( s, next_code ) ; in setContinueToLabel()
160 setCodeSymbol ( s, next_code ) ; in popBreakToLabel()
292 int start_loc = next_code ; in genDoWhileStatement()
352 int start_loc = next_code ; in genForStatement()
417 code [ label_loc ] = next_code & 0xFF ; in genForStatement()
434 int start_loc = next_code ; in genWhileStatement()
446 code [ label_loc ] = next_code & 0xFF ; in genWhileStatement()
490 code [ else_loc ] = next_code & 0xFF ; in genIfStatement()
496 code [ label_loc ] = next_code & 0xFF ; in genIfStatement()
[all …]
/dports/emulators/jzintv/jzintv-20200712-src/src/gif/
H A Dlzw_enc.c42 int next_char = 0, next_code; in lzw_encode() local
153 next_code = -1; in lzw_encode()
161 if (next_code) in lzw_encode()
162 code = next_code; in lzw_encode()
263 int next_char = 0, next_code; in lzw_encode2() local
377 next_code = -1; in lzw_encode2()
385 next_code = tmp; in lzw_encode2()
392 next_code = tmp; in lzw_encode2()
397 next_code = 0; in lzw_encode2()
403 if (next_code) in lzw_encode2()
[all …]
/dports/print/ghostscript9-agpl-base/ghostscript-9.52/base/
H A Dslzwd.c61 ss->next_code = code_0; in s_LZWD_reset()
113 int next_code = ss->next_code; in s_LZWD_process() local
127 code_size, next_code); in s_LZWD_process()
244 if (code >= next_code) { in s_LZWD_process()
248 code, next_code, prev_code); in s_LZWD_process()
271 next_code); in s_LZWD_process()
272 next_code = code_0; in s_LZWD_process()
367 if (next_code < lzw_decode_max) { in s_LZWD_process()
378 if (next_code < lzw_decode_max - 1) { in s_LZWD_process()
382 code_size, next_code); in s_LZWD_process()
[all …]
/dports/print/ghostscript9-agpl-x11/ghostscript-9.52/base/
H A Dslzwd.c61 ss->next_code = code_0; in s_LZWD_reset()
113 int next_code = ss->next_code; in s_LZWD_process() local
127 code_size, next_code); in s_LZWD_process()
244 if (code >= next_code) { in s_LZWD_process()
248 code, next_code, prev_code); in s_LZWD_process()
271 next_code); in s_LZWD_process()
272 next_code = code_0; in s_LZWD_process()
367 if (next_code < lzw_decode_max) { in s_LZWD_process()
378 if (next_code < lzw_decode_max - 1) { in s_LZWD_process()
382 code_size, next_code); in s_LZWD_process()
[all …]
/dports/print/ghostscript8-x11/ghostscript-8.71/base/
H A Dslzwd.c59 ss->next_code = code_0; in s_LZWD_reset()
111 int next_code = ss->next_code; in s_LZWD_process() local
124 code_size, next_code); in s_LZWD_process()
241 if (code >= next_code) { in s_LZWD_process()
242 if (code > next_code) { in s_LZWD_process()
245 code, next_code); in s_LZWD_process()
268 next_code); in s_LZWD_process()
269 next_code = code_0; in s_LZWD_process()
324 if (next_code == lzw_decode_max) { in s_LZWD_process()
377 code_size, next_code); in s_LZWD_process()
[all …]
/dports/print/ghostscript7-base/ghostscript-7.07/src/
H A Dslzwd.c64 ss->next_code = code_0; in s_LZWD_reset()
116 int next_code = ss->next_code; in s_LZWD_process() local
129 code_size, next_code); in s_LZWD_process()
246 if (code >= next_code) { in s_LZWD_process()
247 if (code > next_code) { in s_LZWD_process()
250 code, next_code); in s_LZWD_process()
273 next_code); in s_LZWD_process()
274 next_code = code_0; in s_LZWD_process()
329 if (next_code == lzw_decode_max) { in s_LZWD_process()
381 code_size, next_code); in s_LZWD_process()
[all …]
H A Dslzwce.c98 ss->next_code = (1 << ss->code_size) - 2; in s_LZWE_reset()
124 uint next_code = ss->next_code; in s_LZWE_process() local
127 if (next_code == limit_code) { /* Emit a reset code. */ in s_LZWE_process()
133 next_code = signal + CODE_0; in s_LZWE_process()
140 next_code++; in s_LZWE_process()
151 ss->next_code = next_code; in s_LZWE_process()
/dports/print/ghostscript8-base/ghostscript-8.71/base/
H A Dslzwd.c59 ss->next_code = code_0; in s_LZWD_reset()
111 int next_code = ss->next_code; in s_LZWD_process() local
124 code_size, next_code); in s_LZWD_process()
241 if (code >= next_code) { in s_LZWD_process()
242 if (code > next_code) { in s_LZWD_process()
245 code, next_code); in s_LZWD_process()
268 next_code); in s_LZWD_process()
269 next_code = code_0; in s_LZWD_process()
324 if (next_code == lzw_decode_max) { in s_LZWD_process()
377 code_size, next_code); in s_LZWD_process()
[all …]
/dports/print/ghostscript9-x11/ghostscript-9.06/base/
H A Dslzwd.c61 ss->next_code = code_0; in s_LZWD_reset()
113 int next_code = ss->next_code; in s_LZWD_process() local
126 code_size, next_code); in s_LZWD_process()
243 if (code >= next_code) { in s_LZWD_process()
244 if (code > next_code) { in s_LZWD_process()
247 code, next_code); in s_LZWD_process()
270 next_code); in s_LZWD_process()
271 next_code = code_0; in s_LZWD_process()
326 if (next_code == lzw_decode_max) { in s_LZWD_process()
379 code_size, next_code); in s_LZWD_process()
[all …]
/dports/print/ghostscript9-base/ghostscript-9.06/base/
H A Dslzwd.c61 ss->next_code = code_0; in s_LZWD_reset()
113 int next_code = ss->next_code; in s_LZWD_process() local
126 code_size, next_code); in s_LZWD_process()
243 if (code >= next_code) { in s_LZWD_process()
244 if (code > next_code) { in s_LZWD_process()
247 code, next_code); in s_LZWD_process()
270 next_code); in s_LZWD_process()
271 next_code = code_0; in s_LZWD_process()
326 if (next_code == lzw_decode_max) { in s_LZWD_process()
379 code_size, next_code); in s_LZWD_process()
[all …]
/dports/print/ghostscript7-x11/ghostscript-7.07/src/
H A Dslzwd.c64 ss->next_code = code_0; in s_LZWD_reset()
116 int next_code = ss->next_code; in s_LZWD_process() local
129 code_size, next_code); in s_LZWD_process()
246 if (code >= next_code) { in s_LZWD_process()
247 if (code > next_code) { in s_LZWD_process()
250 code, next_code); in s_LZWD_process()
273 next_code); in s_LZWD_process()
274 next_code = code_0; in s_LZWD_process()
329 if (next_code == lzw_decode_max) { in s_LZWD_process()
381 code_size, next_code); in s_LZWD_process()
[all …]
H A Dslzwce.c98 ss->next_code = (1 << ss->code_size) - 2; in s_LZWE_reset()
124 uint next_code = ss->next_code; in s_LZWE_process() local
127 if (next_code == limit_code) { /* Emit a reset code. */ in s_LZWE_process()
133 next_code = signal + CODE_0; in s_LZWE_process()
140 next_code++; in s_LZWE_process()
151 ss->next_code = next_code; in s_LZWE_process()
/dports/misc/ringtonetools/ringtonetools-2.26/src/
H A Dparse_gif.c25 int code,old_code,next_code,start_table_size; in parse_gif() local
148 next_code=t+2; in parse_gif()
209 next_code=start_table_size+2; in parse_gif()
228 if (code<next_code) in parse_gif()
245 node[next_code].color=temp_buffer[t-1]; in parse_gif()
246 node[next_code].prev=old_code; in parse_gif()
248 if (next_code==mask && mask!=4095) in parse_gif()
253 next_code++; in parse_gif()
267 node[next_code].prev=old_code; in parse_gif()
273 if (next_code==mask && mask!=4095) in parse_gif()
[all …]
H A Dgif.c85 int curr_code_size,next_code; in write_gif_footer() local
156 next_code=table_start_size; in write_gif_footer()
192 node[curr_code].down=next_code; in write_gif_footer()
203 { node[curr_code].right=next_code; } in write_gif_footer()
209 printf("OUTPUT CODE %d next_code=%d color=%d\n",last_code,next_code,color); in write_gif_footer()
215 node[next_code].right=-1; in write_gif_footer()
216 node[next_code].down=-1; in write_gif_footer()
217 node[next_code].color=color; in write_gif_footer()
221 if ((next_code>>curr_code_size)!=0) in write_gif_footer()
231 next_code=table_start_size-1; in write_gif_footer()
[all …]
/dports/games/tux-aqfh/tux_aqfh-1.0.14/src/
H A DslamStatement.cxx63 setCodeSymbol ( lab1, next_code ) ; in pushWhileStatement()
83 setCodeSymbol ( lab2, next_code ) ; in pushWhileStatement()
85 code [ label_loc ] = next_code & 0xFF ; in pushWhileStatement()
86 code [ label_loc+1 ] = ( next_code >> 8 ) & 0xFF ; in pushWhileStatement()
127 setCodeSymbol ( lab1, next_code ) ; in pushIfStatement()
129 code [ else_loc ] = next_code & 0xFF ; in pushIfStatement()
139 setCodeSymbol ( lab1, next_code ) ; in pushIfStatement()
141 code [ else_loc ] = next_code & 0xFF ; in pushIfStatement()
142 code [ else_loc+1 ] = ( next_code >> 8 ) & 0xFF ; in pushIfStatement()
150 setCodeSymbol ( lab2, next_code ) ; in pushIfStatement()
[all …]
/dports/graphics/epstool/epstool-3.09/src/
H A Dclzw.c40 short next_code; member
58 state->next_code = LZW_FIRST; in lzw_reset()
74 state->next_code = LZW_FIRST; in lzw_init()
129 short next_code = state->next_code; in lzw_compress() local
161 if (next_code == state->code_change) { in lzw_compress()
174 if (do_reset || (next_code >= LZW_MAX)) { in lzw_compress()
184 next_code = state->next_code; in lzw_compress()
190 table[hash_index].code = next_code++; in lzw_compress()
214 state->next_code = next_code; in lzw_compress()
/dports/games/shockolate/systemshock-0.8.2-43-ga9eb1b93/src/Libraries/RES/Tests/ResDump/
H A Dlzw.c375 if (lzwc.next_code <= MAX_CODE) in LzwCompress()
377 lzwCodeValue[lzwc.index] = lzwc.next_code++; in LzwCompress()
387 else if (lzwc.next_code > MAX_CODE + FLUSH_PAUSE) in LzwCompress()
393 lzwc.next_code = 256; in LzwCompress()
400 lzwc.next_code++; in LzwCompress()
530 lzwe.next_code = 256; in LzwExpand()
546 if (lzwe.new_code >= lzwe.next_code) in LzwExpand()
575 if (lzwe.next_code <= MAX_CODE) in LzwExpand()
577 lzwPrefixCode[lzwe.next_code] = lzwe.old_code; in LzwExpand()
578 lzwAppendChar[lzwe.next_code] = lzwe.character; in LzwExpand()
[all …]
/dports/games/shockolate/systemshock-0.8.2-43-ga9eb1b93/src/Libraries/RES/Source/
H A Dlzw.c320 lzwc.next_code = 256; // skip over real 256 char values in LzwCompress()
349 if (lzwc.next_code <= MAX_CODE) { in LzwCompress()
363 lzwc.next_code = 256; in LzwCompress()
367 lzwc.next_code++; in LzwCompress()
414 uint32_t next_code; // next available string code member
483 lzwe.next_code = 256; in LzwExpand()
498 if (lzwe.new_code >= lzwe.next_code) { in LzwExpand()
520 if (lzwe.next_code <= MAX_CODE) { in LzwExpand()
521 lzwPrefixCode[lzwe.next_code] = lzwe.old_code; in LzwExpand()
522 lzwAppendChar[lzwe.next_code] = lzwe.character; in LzwExpand()
[all …]
/dports/multimedia/termplay/termplay-2.0.6/cargo-crates/lzw-0.10.0/src/
H A Dlzw.rs99 fn next_code(&self) -> u16 { in next_code() method
165 let next_code = self.table.next_code(); localVariable
166 if code > next_code {
171 next_code
184 } else if code < next_code {
312 fn next_code(&self) -> usize { in next_code() method
342 let next_code = dict.next_code(); in encode() localVariable
343 if next_code > (1 << code_size as usize) in encode()
347 if next_code > MAX_ENTRIES { in encode()
414 let next_code = dict.next_code(); in encode_bytes() localVariable
[all …]
/dports/graphics/librsvg2-rust/librsvg-2.52.8/vendor/lzw/src/
H A Dlzw.rs99 fn next_code(&self) -> u16 { in next_code() method
165 let next_code = self.table.next_code(); localVariable
166 if code > next_code {
171 next_code
184 } else if code < next_code {
312 fn next_code(&self) -> usize { in next_code() method
342 let next_code = dict.next_code(); in encode() localVariable
343 if next_code > (1 << code_size as usize) in encode()
347 if next_code > MAX_ENTRIES { in encode()
414 let next_code = dict.next_code(); in encode_bytes() localVariable
[all …]
/dports/www/geckodriver/mozilla-central-e9783a644016aa9b317887076618425586730d73/testing/geckodriver/cargo-crates/lzw-0.10.0/src/
H A Dlzw.rs99 fn next_code(&self) -> u16 { in next_code() method
165 let next_code = self.table.next_code(); localVariable
166 if code > next_code {
171 next_code
184 } else if code < next_code {
312 fn next_code(&self) -> usize { in next_code() method
342 let next_code = dict.next_code(); in encode() localVariable
343 if next_code > (1 << code_size as usize) in encode()
347 if next_code > MAX_ENTRIES { in encode()
414 let next_code = dict.next_code(); in encode_bytes() localVariable
[all …]
/dports/shells/ion/ion-a8872014dbce730ccd00aaa722397dc394a52bf4/cargo-crates/lzw-0.10.0/src/
H A Dlzw.rs99 fn next_code(&self) -> u16 { in next_code() method
165 let next_code = self.table.next_code(); localVariable
166 if code > next_code {
171 next_code
184 } else if code < next_code {
312 fn next_code(&self) -> usize { in next_code() method
342 let next_code = dict.next_code(); in encode() localVariable
343 if next_code > (1 << code_size as usize) in encode()
347 if next_code > MAX_ENTRIES { in encode()
414 let next_code = dict.next_code(); in encode_bytes() localVariable
[all …]
/dports/games/dose-response/dose-response-179c326/cargo-crates/lzw-0.10.0/src/
H A Dlzw.rs99 fn next_code(&self) -> u16 { in next_code() method
165 let next_code = self.table.next_code(); localVariable
166 if code > next_code {
171 next_code
184 } else if code < next_code {
312 fn next_code(&self) -> usize { in next_code() method
342 let next_code = dict.next_code(); in encode() localVariable
343 if next_code > (1 << code_size as usize) in encode()
347 if next_code > MAX_ENTRIES { in encode()
414 let next_code = dict.next_code(); in encode_bytes() localVariable
[all …]
/dports/textproc/cast2gif/cast2gif-0.1.0/cargo-crates/lzw-0.10.0/src/
H A Dlzw.rs99 fn next_code(&self) -> u16 { in next_code() method
165 let next_code = self.table.next_code(); localVariable
166 if code > next_code {
171 next_code
184 } else if code < next_code {
312 fn next_code(&self) -> usize { in next_code() method
342 let next_code = dict.next_code(); in encode() localVariable
343 if next_code > (1 << code_size as usize) in encode()
347 if next_code > MAX_ENTRIES { in encode()
414 let next_code = dict.next_code(); in encode_bytes() localVariable
[all …]

12345678910>>...53