tag | line | file | source code |
inptr | 113 | zBoot/gzip.h | extern unsigned inptr; /* index of next byte to be processed in inbuf */ |
inptr | 181 | zBoot/gzip.h | #define get_byte() (inptr < insize ? inbuf[inptr++] : fill_inbuf()) |
inptr | 798 | zBoot/inflate.c | inptr--; |
inptr | 51 | zBoot/misc.c | unsigned inptr; |
inptr | 209 | zBoot/misc.c | insize = inptr = 0; |
inptr | 237 | zBoot/misc.c | inptr = 1; |
inptr | 58 | zBoot/unzip.c | uch *h = inbuf + inptr; /* first local header */ |
inptr | 63 | zBoot/unzip.c | inptr += LOCHDR + SH(h + LOCFIL) + SH(h + LOCEXT); |
inptr | 65 | zBoot/unzip.c | if (inptr > insize || LG(h) != LOCSIG) { |
inptr | 176 | zBoot/unzip.c | if (pkzip && inptr + 4 < insize && LG(inbuf+inptr) == LOCSIG) { |