• Home
  • Raw
  • Download

Lines Matching refs:codep

375 	code_t *codep, *free_entp, *maxcodep, *oldcodep;  in LZWDecode()  local
392 codep = sp->dec_codep; in LZWDecode()
393 residue = codep->length - sp->dec_restart; in LZWDecode()
403 codep = codep->next; in LZWDecode()
404 } while (--residue > occ && codep); in LZWDecode()
405 if (codep) { in LZWDecode()
408 *--tp = codep->value; in LZWDecode()
409 codep = codep->next; in LZWDecode()
410 } while (--occ && codep); in LZWDecode()
423 t = codep->value; in LZWDecode()
424 codep = codep->next; in LZWDecode()
426 } while (--residue && codep); in LZWDecode()
469 codep = sp->dec_codetab + code; in LZWDecode()
492 free_entp->value = (codep < free_entp) ? in LZWDecode()
493 codep->firstchar : free_entp->firstchar; in LZWDecode()
500 oldcodep = codep; in LZWDecode()
506 if(codep->length == 0) { in LZWDecode()
513 if (codep->length > occ) { in LZWDecode()
520 sp->dec_codep = codep; in LZWDecode()
522 codep = codep->next; in LZWDecode()
523 } while (codep && codep->length > occ); in LZWDecode()
524 if (codep) { in LZWDecode()
528 *--tp = codep->value; in LZWDecode()
529 codep = codep->next; in LZWDecode()
530 } while (--occ && codep); in LZWDecode()
531 if (codep) in LZWDecode()
536 len = codep->length; in LZWDecode()
541 t = codep->value; in LZWDecode()
542 codep = codep->next; in LZWDecode()
544 } while (codep && tp > op); in LZWDecode()
545 if (codep) { in LZWDecode()
614 code_t *codep, *free_entp, *maxcodep, *oldcodep; in LZWDecodeCompat() local
631 codep = sp->dec_codep; in LZWDecodeCompat()
632 residue = codep->length - sp->dec_restart; in LZWDecodeCompat()
642 codep = codep->next; in LZWDecodeCompat()
646 *--tp = codep->value; in LZWDecodeCompat()
647 codep = codep->next; in LZWDecodeCompat()
658 *--tp = codep->value; in LZWDecodeCompat()
659 codep = codep->next; in LZWDecodeCompat()
703 codep = sp->dec_codetab + code; in LZWDecodeCompat()
724 free_entp->value = (codep < free_entp) ? in LZWDecodeCompat()
725 codep->firstchar : free_entp->firstchar; in LZWDecodeCompat()
732 oldcodep = codep; in LZWDecodeCompat()
738 if(codep->length == 0) { in LZWDecodeCompat()
745 if (codep->length > occ) { in LZWDecodeCompat()
752 sp->dec_codep = codep; in LZWDecodeCompat()
754 codep = codep->next; in LZWDecodeCompat()
755 } while (codep->length > occ); in LZWDecodeCompat()
759 *--tp = codep->value; in LZWDecodeCompat()
760 codep = codep->next; in LZWDecodeCompat()
764 len = codep->length; in LZWDecodeCompat()
769 t = codep->value; in LZWDecodeCompat()
770 codep = codep->next; in LZWDecodeCompat()
772 } while (codep && tp > op); in LZWDecodeCompat()