/illumos-gate/usr/src/contrib/zlib/ |
H A D | deflate.h | 113 uInt w_size; /* LZ77 window size (32K by default) */ 114 uInt w_bits; /* log2(w_size) (8..16) */ 115 uInt w_mask; /* w_size - 1 */ 140 uInt ins_h; /* hash index of string to be inserted */ 141 uInt hash_size; /* number of elements in hash table */ 142 uInt hash_bits; /* log2(hash_size) */ 143 uInt hash_mask; /* hash_size-1 */ 145 uInt hash_shift; 157 uInt match_length; /* length of best match */ 160 uInt strstart; /* start of string to insert */ [all …]
|
H A D | zutil.c | 35 switch ((int)(sizeof(uInt))) { in zlibCompileFlags() 149 uInt len; 160 uInt len; 162 uInt j; 172 uInt len; 277 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc() 297 extern voidp malloc OF((uInt size)); 298 extern voidp calloc OF((uInt items, uInt size)); 305 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) : in zcalloc()
|
H A D | zlib.h | 81 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 88 uInt avail_in; /* number of bytes available at next_in */ 92 uInt avail_out; /* remaining free space at next_out */ 120 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */ 121 uInt extra_max; /* space at extra (only when reading header) */ 123 uInt name_max; /* space at name (only when reading header) */ 125 uInt comm_max; /* space at comment (only when reading header) */ 612 uInt dictLength)); 656 uInt *dictLength)); 888 uInt dictLength)); [all …]
|
H A D | deflate.c | 85 local void putShortMSB OF((deflate_state *s, uInt b)); 91 uInt longest_match OF((deflate_state *s, IPos cur_match)); 93 local uInt longest_match OF((deflate_state *s, IPos cur_match)); 207 uInt wsize = s->w_size; 308 s->w_bits = (uInt)windowBits; 312 s->hash_bits = (uInt)memLevel + 7; 417 uInt dictLength; 420 uInt str, n; 486 uInt *dictLength; 489 uInt len; [all …]
|
H A D | zutil.h | 232 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 233 int ZLIB_INTERNAL zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); 234 void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
|
H A D | zconf.h | 177 # define uInt z_uInt macro 418 typedef unsigned int uInt; /* 16 bits or more */ typedef 429 typedef uInt FAR uIntf;
|
H A D | gzguts.h | 122 extern voidp malloc OF((uInt size));
|
H A D | adler32.c | 129 uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len) in adler32()
|
H A D | inflate.c | 248 if (bits > 16 || state->bits + (uInt)bits > 32) return Z_STREAM_ERROR; in inflatePrime() 251 state->bits += (uInt)bits; in inflatePrime() 1296 uInt *dictLength) in inflateGetDictionary() 1317 uInt dictLength) in inflateSetDictionary()
|
H A D | infback.c | 60 state->wbits = (uInt)windowBits; in inflateBackInit_()
|
H A D | crc32.c | 1053 uInt len) in crc32()
|
H A D | ChangeLog | 1476 - allow renaming of Byte, uInt, etc... with #define
|
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/ |
H A D | zlib.c | 229 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 230 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); 231 extern void zmemzero OF((Bytef* dest, uInt len)); 261 typedef uLong (*check_func) OF((uLong check, const Bytef *buf, uInt len)); 376 uInt w_size; /* LZ77 window size (32K by default) */ 377 uInt w_bits; /* log2(w_size) (8..16) */ 378 uInt w_mask; /* w_size - 1 */ 408 uInt ins_h; /* hash index of string to be inserted */ 409 uInt hash_size; /* number of elements in hash table */ 410 uInt hash_bits; /* log2(hash_size) */ [all …]
|
H A D | zlib.h | 122 #define uInt z_uInt macro 305 typedef unsigned int uInt; /* 16 bits or more */ typedef 316 typedef uInt FAR uIntf; 397 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 404 uInt avail_in; /* number of bytes available at next_in */ 408 uInt avail_out; /* remaining free space at next_out */ 800 const Bytef *dictionary, uInt dictLength)); 933 const Bytef *dictionary, uInt dictLength)); 1131 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
|
H A D | inffixed.h | 25 local const uInt fixed_bl = 9; 26 local const uInt fixed_bd = 5;
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
H A D | zlib.c | 121 typedef uLong (*check_func) OF((uLong check, Bytef *buf, uInt len)); 230 uInt w_size; /* LZ77 window size (32K by default) */ 231 uInt w_bits; /* log2(w_size) (8..16) */ 232 uInt w_mask; /* w_size - 1 */ 257 uInt ins_h; /* hash index of string to be inserted */ 258 uInt hash_size; /* number of elements in hash table */ 259 uInt hash_bits; /* log2(hash_size) */ 260 uInt hash_mask; /* hash_size-1 */ 262 uInt hash_shift; 274 uInt match_length; /* length of best match */ [all …]
|
H A D | zlib.h | 114 typedef unsigned int uInt; /* 16 bits or more */ typedef 120 typedef uInt FAR uIntf; 154 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 155 typedef void (*free_func) OF((voidpf opaque, voidpf address, uInt nbytes)); 161 uInt avail_in; /* number of bytes available at next_in */ 165 uInt avail_out; /* remaining free space at next_out */ 610 extern uLong adler32 OF((uLong adler, Bytef *buf, uInt len));
|
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/ |
H A D | ratz.c | 395 typedef unsigned int uInt; /* 16 bits or more */ typedef 406 typedef uInt FAR uIntf; 500 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 507 uInt avail_in; /* number of bytes available at next_in */ 511 uInt avail_out; /* remaining free space at next_out */ 775 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 776 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); 777 extern void zmemzero OF((Bytef* dest, uInt len)); 822 uInt len; 833 uInt len; [all …]
|
/illumos-gate/usr/src/boot/libsa/ |
H A D | gzipfs.c | 119 uInt len; in check_header() 141 len = (uInt)get_byte(zf, &zf->zf_dataoffset); in check_header() 142 len += ((uInt)get_byte(zf, &zf->zf_dataoffset))<<8; in check_header()
|