Searched refs:uInt (Results 1 – 14 of 14) sorted by relevance
/titanic_44/usr/src/uts/common/zmod/ |
H A D | deflate.h | 100 uInt pending; /* nb of bytes in the pending buffer */ 103 uInt gzindex; /* where in extra, name, or comment */ 109 uInt w_size; /* LZ77 window size (32K by default) */ 110 uInt w_bits; /* log2(w_size) (8..16) */ 111 uInt w_mask; /* w_size - 1 */ 136 uInt ins_h; /* hash index of string to be inserted */ 137 uInt hash_size; /* number of elements in hash table */ 138 uInt hash_bits; /* log2(hash_size) */ 139 uInt hash_mask; /* hash_size-1 */ 141 uInt hash_shift; [all …]
|
H A D | zutil.c | 42 switch (sizeof(uInt)) { in zlibCompileFlags() 158 uInt len; 169 uInt len; 171 uInt j; 181 uInt len; 301 extern voidp malloc OF((uInt size)); 302 extern voidp calloc OF((uInt items, uInt size)); 312 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
|
H A D | zlib.h | 79 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 86 uInt avail_in; /* number of bytes available at next_in */ 90 uInt avail_out; /* remaining free space at next_out */ 117 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */ 118 uInt extra_max; /* space at extra (only when reading header) */ 120 uInt name_max; /* space at name (only when reading header) */ 122 uInt comm_max; /* space at comment (only when reading header) */ 542 uInt dictLength)); 740 uInt dictLength)); 1262 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len)); [all …]
|
H A D | deflate.c | 88 local void putShortMSB OF((deflate_state *s, uInt b)); 94 uInt longest_match OF((deflate_state *s, IPos cur_match)); 96 local uInt longest_match OF((deflate_state *s, IPos cur_match)); 99 local uInt longest_match_fast OF((deflate_state *s, IPos cur_match)); 324 uInt dictLength; 327 uInt length = dictLength; 328 uInt n; 526 uInt b; 631 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8; 632 uInt level_flags; [all …]
|
H A D | zconf.h | 102 typedef unsigned int uInt; typedef 107 typedef uInt uIntf;
|
H A D | zutil.h | 240 extern void zmemcpy OF((void* dest, const void* source, uInt len)); 241 extern int zmemcmp OF((const void* s1, const void* s2, uInt len)); 242 extern void zmemzero OF((void* dest, uInt len));
|
H A D | adler32.c | 60 uInt len;
|
H A D | trees.c | 1111 Assert((uInt)(s->pending) < s->lit_bufsize + 2*lx,
|
H A D | inflate.c | 1199 uInt dictLength;
|
/titanic_44/usr/src/uts/common/io/ppp/spppcomp/ |
H A D | zlib.c | 231 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 232 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); 233 extern void zmemzero OF((Bytef* dest, uInt len)); 263 typedef uLong (*check_func) OF((uLong check, const Bytef *buf, uInt len)); 378 uInt w_size; /* LZ77 window size (32K by default) */ 379 uInt w_bits; /* log2(w_size) (8..16) */ 380 uInt w_mask; /* w_size - 1 */ 410 uInt ins_h; /* hash index of string to be inserted */ 411 uInt hash_size; /* number of elements in hash table */ 412 uInt hash_bits; /* log2(hash_size) */ [all …]
|
H A D | zlib.h | 124 #define uInt z_uInt macro 307 typedef unsigned int uInt; /* 16 bits or more */ typedef 318 typedef uInt FAR uIntf; 399 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 406 uInt avail_in; /* number of bytes available at next_in */ 410 uInt avail_out; /* remaining free space at next_out */ 802 const Bytef *dictionary, uInt dictLength)); 935 const Bytef *dictionary, uInt dictLength)); 1133 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
|
H A D | inffixed.h | 27 local const uInt fixed_bl = 9; 28 local const uInt fixed_bd = 5;
|
/titanic_44/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
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));
|
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 …]
|