| /freebsd-9-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/ |
| 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 …]
|
| 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) :
|
| 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 …]
|
| 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 …]
|
| D | zconf.h | 102 typedef unsigned int uInt; typedef 107 typedef uInt uIntf;
|
| 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));
|
| /freebsd-9-stable/lib/libz/ |
| D | deflate.h | 103 uInt pending; /* nb of bytes in the pending buffer */ 106 uInt gzindex; /* where in extra, name, or comment */ 112 uInt w_size; /* LZ77 window size (32K by default) */ 113 uInt w_bits; /* log2(w_size) (8..16) */ 114 uInt w_mask; /* w_size - 1 */ 139 uInt ins_h; /* hash index of string to be inserted */ 140 uInt hash_size; /* number of elements in hash table */ 141 uInt hash_bits; /* log2(hash_size) */ 142 uInt hash_mask; /* hash_size-1 */ 144 uInt hash_shift; [all …]
|
| D | zutil.c | 40 switch ((int)(sizeof(uInt))) { in zlibCompileFlags() 155 uInt len; 166 uInt len; 168 uInt j; 178 uInt len; 279 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc() 299 extern voidp malloc OF((uInt size)); 300 extern voidp calloc OF((uInt items, uInt size)); 310 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
|
| D | zlib.h | 80 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 87 uInt avail_in; /* number of bytes available at next_in */ 91 uInt avail_out; /* remaining free space at next_out */ 118 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */ 119 uInt extra_max; /* space at extra (only when reading header) */ 121 uInt name_max; /* space at name (only when reading header) */ 123 uInt comm_max; /* space at comment (only when reading header) */ 589 uInt dictLength)); 821 uInt dictLength)); 844 uInt *dictLength)); [all …]
|
| D | deflate.c | 85 local void putShortMSB OF((deflate_state *s, uInt b)); 90 uInt longest_match OF((deflate_state *s, IPos cur_match)); 92 local uInt longest_match OF((deflate_state *s, IPos cur_match)); 326 uInt dictLength; 329 uInt str, n; 630 uInt b; 738 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8; 739 uInt level_flags; 758 putShortMSB(s, (uInt)(strm->adler >> 16)); 759 putShortMSB(s, (uInt)(strm->adler & 0xffff)); [all …]
|
| D | uncompr.c | 34 stream.avail_in = (uInt)sourceLen; 39 stream.avail_out = (uInt)*destLen;
|
| D | compress.c | 33 stream.avail_in = (uInt)sourceLen; 39 stream.avail_out = (uInt)*destLen;
|
| D | zutil.h | 213 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 214 int ZLIB_INTERNAL zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); 215 void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
|
| D | zconf.h | 141 # define uInt z_uInt macro 370 typedef unsigned int uInt; /* 16 bits or more */ typedef 381 typedef uInt FAR uIntf;
|
| /freebsd-9-stable/sys/net/ |
| D | zlib.c | 222 extern void zmemcpy OF((Bytef* dest, Bytef* source, uInt len)); 223 extern int zmemcmp OF((Bytef* s1, Bytef* s2, uInt len)); 224 extern void zmemzero OF((Bytef* dest, uInt len)); 250 typedef uLong (*check_func) OF((uLong check, const Bytef *buf, uInt len)); 359 uInt w_size; /* LZ77 window size (32K by default) */ 360 uInt w_bits; /* log2(w_size) (8..16) */ 361 uInt w_mask; /* w_size - 1 */ 386 uInt ins_h; /* hash index of string to be inserted */ 387 uInt hash_size; /* number of elements in hash table */ 388 uInt hash_bits; /* log2(hash_size) */ [all …]
|
| D | zlib.h | 98 # define uInt z_uInt macro 213 typedef unsigned int uInt; /* 16 bits or more */ typedef 224 typedef uInt FAR uIntf; 273 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 280 uInt avail_in; /* number of bytes available at next_in */ 284 uInt avail_out; /* remaining free space at next_out */ 653 uInt dictLength)); 776 uInt dictLength)); 947 extern uLong EXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len)); 965 extern uLong EXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len));
|
| D | zutil.h | 193 extern void zmemcpy OF((Bytef* dest, Bytef* source, uInt len)); 194 extern int zmemcmp OF((Bytef* s1, Bytef* s2, uInt len)); 195 extern void zmemzero OF((Bytef* dest, uInt len)); 221 typedef uLong (*check_func) OF((uLong check, const Bytef *buf, uInt len));
|
| /freebsd-9-stable/lib/libz/test/ |
| D | example.c | 294 c_stream.avail_out = (uInt)comprLen; 300 c_stream.avail_in = (uInt)uncomprLen; 311 c_stream.avail_in = (uInt)comprLen/2; 318 c_stream.avail_in = (uInt)uncomprLen; 348 d_stream.avail_in = (uInt)comprLen; 355 d_stream.avail_out = (uInt)uncomprLen; 381 uInt len = (uInt)strlen(hello)+1; 393 c_stream.avail_out = (uInt)*comprLen; 433 d_stream.avail_out = (uInt)uncomprLen; 438 d_stream.avail_in = (uInt)comprLen-2; /* read all compressed data */ [all …]
|
| /freebsd-9-stable/contrib/gcclibs/libdecnumber/ |
| D | decimal32.c | 78 uInt status = 0; /* status accumulator */ in decimal32FromNumber() 83 uInt comb, exp; /* work */ in decimal32FromNumber() 150 uInt msd; /* work */ in decimal32FromNumber() 153 exp = (uInt) (dn->exponent + DECIMAL32_Bias); /* bias exponent */ in decimal32FromNumber() 195 uInt msd; /* coefficient MSD */ in decimal32ToNumber() 197 uInt top = d32->bytes[0] & 0x7f; /* top byte, less sign bit */ in decimal32ToNumber() 215 uInt comb = top >> 2; /* combination field */ in decimal32ToNumber() 216 uInt exp; /* working exponent */ in decimal32ToNumber()
|
| D | decimal128.c | 78 uInt status = 0; /* status accumulator */ in decimal128FromNumber() 83 uInt comb, exp; /* work */ in decimal128FromNumber() 150 uInt msd; /* work */ in decimal128FromNumber() 153 exp = (uInt) (dn->exponent + DECIMAL128_Bias); /* bias exponent */ in decimal128FromNumber() 198 uInt msd; /* coefficient MSD */ in decimal128ToNumber() 200 uInt top = d128->bytes[0] & 0x7f; /* top byte, less sign bit */ in decimal128ToNumber() 218 uInt comb = top >> 2; /* combination field */ in decimal128ToNumber() 219 uInt exp; /* exponent */ in decimal128ToNumber()
|
| D | decimal64.c | 78 uInt status = 0; /* status accumulator */ in decimal64FromNumber() 83 uInt comb, exp; /* work */ in decimal64FromNumber() 150 uInt msd; /* work */ in decimal64FromNumber() 153 exp = (uInt) (dn->exponent + DECIMAL64_Bias); /* bias exponent */ in decimal64FromNumber() 194 uInt msd; /* coefficient MSD */ in decimal64ToNumber() 196 uInt top = d64->bytes[0] & 0x7f; /* top byte, less sign bit */ in decimal64ToNumber() 214 uInt comb = top >> 2; /* combination field */ in decimal64ToNumber() 215 uInt exp; /* exponent */ in decimal64ToNumber()
|
| D | decUtility.c | 81 uInt dpd; /* densely packed decimal value */ in decDensePackCoeff() 82 uInt bin; /* binary value 0-999 */ in decDensePackCoeff() 97 uInt next = 0; /* work */ in decDensePackCoeff() 107 uInt rem = *source % powers[cut]; in decDensePackCoeff() 146 Unit temp = (Unit) ((uInt) (in * 6554) >> 16); in decDensePackCoeff() 227 uInt dpd = 0; /* collector for 10 bits */ in decDenseUnpackCoeff() 235 uInt bcd; /* BCD result */ in decDenseUnpackCoeff() 236 uInt nibble; /* work */ in decDenseUnpackCoeff()
|
| D | decNumber.c | 175 const uInt powers[] = { 1, 10, 100, 1000, 10000, 100000, 1000000, 197 #define ueInt uInt /* unsigned extended integer */ 201 static const uInt multies[] = { 131073, 26215, 5243, 1049, 210 }; 204 #define QUOT10(u, n) ((((uInt)(u)>>(n))*multies[n])>>17) 220 uByte, uInt *); 221 static void decApplyRound (decNumber *, decContext *, Int, uInt *); 224 decContext *, Flag, uInt *); 226 Int *, uInt *); 228 decContext *, Flag, uInt *); 229 static void decFinalize (decNumber *, decContext *, Int *, uInt *); [all …]
|
| D | decNumberLocal.h | 50 #define uInt uint32_t macro 113 extern const uInt powers[];
|
| /freebsd-9-stable/lib/libstand/ |
| D | gzipfs.c | 119 uInt len; in check_header() 140 len = (uInt)get_byte(zf, &zf->zf_dataoffset); in check_header() 141 len += ((uInt)get_byte(zf, &zf->zf_dataoffset))<<8; in check_header()
|