Searched refs:dec_codetab (Results 1 – 1 of 1) sorted by relevance
144 code_t* dec_codetab; /* kept separate for small machines */ member218 DecoderState(tif)->dec_codetab = NULL; in LZWSetupDecode()231 if (sp->dec_codetab == NULL) { in LZWSetupDecode()232 sp->dec_codetab = (code_t*)_TIFFmalloc(CSIZE*sizeof (code_t)); in LZWSetupDecode()233 if (sp->dec_codetab == NULL) { in LZWSetupDecode()243 sp->dec_codetab[code].value = (unsigned char)code; in LZWSetupDecode()244 sp->dec_codetab[code].firstchar = (unsigned char)code; in LZWSetupDecode()245 sp->dec_codetab[code].length = 1; in LZWSetupDecode()246 sp->dec_codetab[code].next = NULL; in LZWSetupDecode()251 _TIFFmemset(&sp->dec_codetab[CODE_CLEAR], 0, in LZWSetupDecode()[all …]