Searched refs:uInt (Results 1 - 15 of 15) sorted by relevance
/ast/src/lib/libz/ |
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_shif [all...] |
H A D | zutil.c | 37 switch (sizeof(uInt)) { 152 uInt len; 163 uInt len; 165 uInt j; 175 uInt len; 296 extern voidp malloc OF((uInt size)); 297 extern voidp calloc OF((uInt items, uInt size)); 308 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
|
H A D | uncompr.c | 36 stream.avail_in = (uInt)sourceLen; 41 stream.avail_out = (uInt)*destLen;
|
H A D | compress.c | 33 stream.avail_in = (uInt)sourceLen; 39 stream.avail_out = (uInt)*destLen;
|
H A D | zlib.h | 77 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 84 uInt avail_in; /* number of bytes available at next_in */ 88 uInt avail_out; /* remaining free space at next_out */ 115 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */ 116 uInt extra_max; /* space at extra (only when reading header) */ 118 uInt name_max; /* space at name (only when reading header) */ 120 uInt comm_max; /* space at comment (only when reading header) */ 540 uInt dictLength)); 738 uInt dictLengt [all...] |
H A D | example.c | 263 c_stream.avail_out = (uInt)comprLen; 269 c_stream.avail_in = (uInt)uncomprLen; 280 c_stream.avail_in = (uInt)comprLen/2; 287 c_stream.avail_in = (uInt)uncomprLen; 317 d_stream.avail_in = (uInt)comprLen; 324 d_stream.avail_out = (uInt)uncomprLen; 350 uInt len = (uInt)strlen(hello)+1; 362 c_stream.avail_out = (uInt)*comprLen; 402 d_stream.avail_out = (uInt)uncomprLe [all...] |
H A D | deflate.c | 83 local void putShortMSB OF((deflate_state *s, uInt b)); 89 uInt longest_match OF((deflate_state *s, IPos cur_match)); 91 local uInt longest_match OF((deflate_state *s, IPos cur_match)); 94 local uInt longest_match_fast OF((deflate_state *s, IPos cur_match)); 318 uInt dictLength; 321 uInt length = dictLength; 322 uInt n; 520 uInt b; 625 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8; 626 uInt level_flag [all...] |
H A D | gzio.c | 44 extern voidp malloc OF((uInt size)); 336 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file); 362 uInt len; 387 len = (uInt)fread(s->inbuf + len, 1, Z_BUFSIZE >> len, s->file); 420 len = (uInt)get_byte(s); 421 len += ((uInt)get_byte(s))<<8; 519 uInt n = s->stream.avail_in; 531 (uInt)fread(next_out, 1, s->stream.avail_out, s->file); 542 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file); 563 s->crc = crc32(s->crc, start, (uInt)( [all...] |
H A D | zconf.h | 68 # define uInt z_uInt macro 278 typedef unsigned int uInt; /* 16 bits or more */ typedef 289 typedef uInt FAR uIntf;
|
H A D | zutil.h | 235 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 236 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); 237 extern void zmemzero OF((Bytef* dest, uInt len));
|
H A D | minigzip.c | 230 uInt len = (uInt)strlen(file);
|
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 | 1172 uInt dictLength;
|
/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 le [all...] |
Completed in 39 milliseconds