Lines Matching defs:code
7 * Derived from the giftoppm code found in the pbmplus package
17 * This file also contains code from the giftoppm program, which is
130 * A standard TCL completion code. If TCL_ERROR is returned
237 "error reading extension function code in GIF image";
340 * The code below is copied from the giftoppm program and modified
528 int code, incode;
575 while ((code = GetCode(fd, code_size, 0)) >= 0) {
576 if (code == clear_code) {
593 } else if (code == end_code) {
607 incode = code;
609 if (code >= max_code) {
611 code = oldcode;
614 while (code >= clear_code) {
615 *sp++ = table[1][code];
616 if (code == table[0][code]) {
626 code = table[0][code];
629 *sp++ = firstcode = table[1][code];
631 if ((code = max_code) <(1<<MAX_LWZ_BITS)) {
633 table[0][code] = oldcode;
634 table[1][code] = firstcode;
647 return code;