• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/lib/

Lines Matching defs:int

85 	int limit[MAX_HUFCODE_BITS+1];
86 int base[MAX_HUFCODE_BITS];
87 int permute[MAX_SYMBOLS];
88 int minLen, maxLen;
95 int writeCopies, writePos, writeRunCountdown, writeCount, writeCurrent;
97 int (*fill)(void*, unsigned int);
98 int inbufCount, inbufPos /*, outbufPos*/;
100 unsigned int inbufBitCount, inbufBits;
103 unsigned int crc32Table[256], headerCRC, totalCRC, writeCRC;
105 unsigned int *dbuf, dbufSize;
109 int io_error; /* non-zero if we have IO error */
110 int byteCount[256];
117 static unsigned int INIT get_bits(struct bunzip_data *bd, char bits_wanted)
119 unsigned int bits = 0;
157 static int INIT get_next_block(struct bunzip_data *bd)
160 int *base = NULL;
161 int *limit = NULL;
162 int dbufCount, nextSym, dbufSize, groupCount, selector,
165 unsigned int *dbuf, origPtr;
237 int minLen, maxLen, pp;
478 dbuf[dbufCount++] = (unsigned int)uc;
524 static int INIT read_bunzip(struct bunzip_data *bd, char *outbuf, int len)
526 const unsigned int *dbuf;
527 int pos, xcurrent, previous, gotcount;
622 static int INIT nofill(void *buf, unsigned int len)
630 static int INIT start_bunzip(struct bunzip_data **bdp, void *inbuf, int len,
631 int (*fill)(void*, unsigned int))
634 unsigned int i, j, c;
635 const unsigned int BZh0 =
636 (((unsigned int)'B') << 24)+(((unsigned int)'Z') << 16)
637 +(((unsigned int)'h') << 8)+(unsigned int)'0';
665 if (((unsigned int)(i-BZh0-1)) >= 9)
672 bd->dbuf = large_malloc(bd->dbufSize * sizeof(int));
680 STATIC int INIT bunzip2(unsigned char *buf, int len,
681 int(*fill)(void*, unsigned int),
682 int(*flush)(void*, unsigned int),
684 int *pos,
688 int i = -1;
749 STATIC int INIT decompress(unsigned char *buf, int len,
750 int(*fill)(void*, unsigned int),
751 int(*flush)(void*, unsigned int),
753 int *pos,