• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/ksh-20/ksh/src/cmd/INIT/

Lines Matching refs:uInt

390 typedef unsigned int   uInt;  /* 16 bits or more */
401 typedef uInt FAR uIntf;
495 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
502 uInt avail_in; /* number of bytes available at next_in */
506 uInt avail_out; /* remaining free space at next_out */
770 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
771 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
772 extern void zmemzero OF((Bytef* dest, uInt len));
817 uInt len;
828 uInt len;
830 uInt j;
840 uInt len;
961 extern voidp malloc OF((uInt size));
962 extern voidp calloc OF((uInt items, uInt size));
973 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
1159 uInt len;
1305 uInt pending; /* nb of bytes in the pending buffer */
1308 uInt gzindex; /* where in extra, name, or comment */
1314 uInt w_size; /* LZ77 window size (32K by default) */
1315 uInt w_bits; /* log2(w_size) (8..16) */
1316 uInt w_mask; /* w_size - 1 */
1341 uInt ins_h; /* hash index of string to be inserted */
1342 uInt hash_size; /* number of elements in hash table */
1343 uInt hash_bits; /* log2(hash_size) */
1344 uInt hash_mask; /* hash_size-1 */
1346 uInt hash_shift;
1358 uInt match_length; /* length of best match */
1361 uInt strstart; /* start of string to insert */
1362 uInt match_start; /* start of matching string */
1363 uInt lookahead; /* number of valid bytes ahead in window */
1365 uInt prev_length;
1370 uInt max_chain_length;
1376 uInt max_lazy_match;
1390 uInt good_match;
1421 uInt lit_bufsize;
1441 uInt last_lit; /* running index in l_buf */
1451 uInt matches; /* number of string matches in current block */
3386 uInt dictLength;
3611 extern voidp malloc OF((uInt size));
3828 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
3854 uInt len;
3879 len = (uInt)fread(s->inbuf + len, 1, Z_BUFSIZE >> len, s->file);
3911 len = (uInt)get_byte(s);
3912 len += ((uInt)get_byte(s))<<8;
4010 uInt n = s->stream.avail_in;
4022 (uInt)fread(next_out, 1, s->stream.avail_out, s->file);
4033 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
4054 s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start));
4088 s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start));