Home
last modified time | relevance | path

Searched refs:firstcode (Results 1 – 3 of 3) sorted by relevance

/third_party/cups-filters/cupsfilters/
Dimage-gif.c546 firstcode, /* First code read */ in gif_read_lzw() local
609 firstcode = oldcode = gif_get_code(fp, code_size, 0); in gif_read_lzw()
611 while (firstcode == clear_code); in gif_read_lzw()
613 return (firstcode & 255); in gif_read_lzw()
639 firstcode = oldcode = gif_get_code(fp, code_size, 0); in gif_read_lzw()
641 return (firstcode & 255); in gif_read_lzw()
658 *sp++ = firstcode; in gif_read_lzw()
673 *sp++ = firstcode = table[1][code]; in gif_read_lzw()
680 table[1][code] = firstcode; in gif_read_lzw()
/third_party/skia/third_party/externals/libjpeg-turbo/
Drdgif.c111 int firstcode; /* first byte of oldcode's expansion */ member
287 sinfo->firstcode = sinfo->oldcode = code; in LZWReadByte()
313 *(sinfo->sp++) = (UINT8)sinfo->firstcode; in LZWReadByte()
323 sinfo->firstcode = code; /* save for possible future use */ in LZWReadByte()
329 sinfo->symbol_tail[code] = (UINT8)sinfo->firstcode; in LZWReadByte()
340 return sinfo->firstcode; /* return first byte of symbol's expansion */ in LZWReadByte()
/third_party/libjpeg-turbo/
Drdgif.c111 int firstcode; /* first byte of oldcode's expansion */ member
287 sinfo->firstcode = sinfo->oldcode = code; in LZWReadByte()
313 *(sinfo->sp++) = (UINT8)sinfo->firstcode; in LZWReadByte()
323 sinfo->firstcode = code; /* save for possible future use */ in LZWReadByte()
329 sinfo->symbol_tail[code] = (UINT8)sinfo->firstcode; in LZWReadByte()
340 return sinfo->firstcode; /* return first byte of symbol's expansion */ in LZWReadByte()