| /openbsd-src/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/zlib-src/ |
| H A D | deflate.h | 119 uInt w_size; /* LZ77 window size (32K by default) */ 120 uInt w_bits; /* log2(w_size) (8..16) */ 121 uInt w_mask; /* w_size - 1 */ 146 uInt ins_h; /* hash index of string to be inserted */ 147 uInt hash_size; /* number of elements in hash table */ 148 uInt hash_bits; /* log2(hash_size) */ 149 uInt hash_mask; /* hash_size-1 */ 151 uInt hash_shift; 163 uInt match_length; /* length of best match */ 166 uInt strstar [all...] |
| H A D | zutil.c | 35 switch ((int)(sizeof(uInt))) { in zlibCompileFlags() 145 void ZLIB_INTERNAL zmemcpy(Bytef* dest, const Bytef* source, uInt len) { 152 int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len) { in zmemcpy() 153 uInt j; in zmemcpy() 161 void ZLIB_INTERNAL zmemzero(Bytef* dest, uInt len) { 263 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, uInt items, uInt size) { in zcfree() 281 extern voidp malloc(uInt size); 282 extern voidp calloc(uInt items, uInt siz [all...] |
| H A D | compress.c | 26 const uInt max = (uInt)-1; in compress2() 46 stream.avail_out = left > (uLong)max ? max : (uInt)left; in compress2() 50 stream.avail_in = sourceLen > (uLong)max ? max : (uInt)sourceLen; in compress2()
|
| H A D | zlib.h | 81 typedef voidpf (*alloc_func)(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) */ 613 uInt dictLength); 657 uInt *dictLengt [all...] |
| H A D | uncompr.c | 31 const uInt max = (uInt)-1; in uncompress2() 59 stream.avail_out = left > (uLong)max ? max : (uInt)left; in uncompress2() 63 stream.avail_in = len > (uLong)max ? max : (uInt)len; in uncompress2()
|
| H A D | deflate.c | 190 uInt wsize = s->w_size; 254 uInt wsize = s->w_size; in deflateInit2_() 308 uInt str = s->strstart - s->insert; in deflateInit2_() 440 s->w_bits = (uInt)windowBits; in deflateSetDictionary() 444 s->hash_bits = (uInt)memLevel + 7; in deflateSetDictionary() 551 uInt dictLength) { 553 uInt str, n; in deflateSetHeader() 617 uInt *dictLength) { in deflateParams() 619 uInt len; in deflateParams() 803 s->good_match = (uInt)good_lengt [all...] |
| /openbsd-src/lib/libz/ |
| H A D | deflate.h | 117 uInt w_size; /* LZ77 window size (32K by default) */ 118 uInt w_bits; /* log2(w_size) (8..16) */ 119 uInt w_mask; /* w_size - 1 */ 144 uInt ins_h; /* hash index of string to be inserted */ 145 uInt hash_size; /* number of elements in hash table */ 146 uInt hash_bits; /* log2(hash_size) */ 147 uInt hash_mask; /* hash_size-1 */ 149 uInt hash_shift; 161 uInt match_length; /* length of best match */ 164 uInt strstar [all...] |
| H A D | zutil.c | 33 switch ((int)(sizeof(uInt))) { in zlibCompileFlags() 143 void ZLIB_INTERNAL zmemcpy(Bytef* dest, const Bytef* source, uInt len) { in zmemcpy() 150 int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len) { in zmemcmp() 151 uInt j; in zmemcmp() 159 void ZLIB_INTERNAL zmemzero(Bytef* dest, uInt len) { in zmemzero() 261 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, uInt items, uInt size) { in zcalloc() 279 extern voidp malloc(uInt size); 280 extern voidp calloc(uInt items, uInt size);
|
| H A D | zlib.h | 81 typedef voidpf (*alloc_func)(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) */ 616 uInt dictLength); 660 uInt *dictLengt [all...] |
| H A D | compress.c | 24 const uInt max = (uInt)-1; in compress2() 44 stream.avail_out = left > (uLong)max ? max : (uInt)left; in compress2() 48 stream.avail_in = sourceLen > (uLong)max ? max : (uInt)sourceLen; in compress2()
|
| H A D | uncompr.c | 29 const uInt max = (uInt)-1; in uncompress2() 57 stream.avail_out = left > (uLong)max ? max : (uInt)left; in uncompress2() 61 stream.avail_in = len > (uLong)max ? max : (uInt)len; in uncompress2()
|
| H A D | deflate.c | 186 uInt wsize = s->w_size; in slide_hash() 250 uInt wsize = s->w_size; in fill_window() 304 uInt str = s->strstart - s->insert; in fill_window() 436 s->w_bits = (uInt)windowBits; in deflateInit2_() 440 s->hash_bits = (uInt)memLevel + 7; in deflateInit2_() 547 uInt dictLength) { in deflateSetDictionary() 549 uInt str, n; in deflateSetDictionary() 613 uInt *dictLength) { in deflateGetDictionary() 615 uInt len; in deflateGetDictionary() 807 s->good_match = (uInt)good_lengt [all...] |
| H A D | zutil.h | 219 void ZLIB_INTERNAL zmemcpy(Bytef* dest, const Bytef* source, uInt len); 220 int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len); 221 void ZLIB_INTERNAL zmemzero(Bytef* dest, uInt len);
|
| /openbsd-src/sys/lib/libz/ |
| H A D | deflate.h | 117 uInt w_size; /* LZ77 window size (32K by default) */ 118 uInt w_bits; /* log2(w_size) (8..16) */ 119 uInt w_mask; /* w_size - 1 */ 144 uInt ins_h; /* hash index of string to be inserted */ 145 uInt hash_size; /* number of elements in hash table */ 146 uInt hash_bits; /* log2(hash_size) */ 147 uInt hash_mask; /* hash_size-1 */ 149 uInt hash_shift; 161 uInt match_length; /* length of best match */ 164 uInt strstar [all...] |
| H A D | zutil.c | 36 switch ((int)(sizeof(uInt))) { in zlibCompileFlags() 146 void ZLIB_INTERNAL zmemcpy(Bytef* dest, const Bytef* source, uInt len) { in zmemcpy() 153 int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len) { in zmemcmp() 154 uInt j; in zmemcmp() 162 void ZLIB_INTERNAL zmemzero(Bytef* dest, uInt len) { in zmemzero() 264 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, uInt items, uInt size) { in zcalloc() 282 extern voidp malloc(uInt size); 283 extern voidp calloc(uInt items, uInt size);
|
| H A D | zlib.h | 81 typedef voidpf (*alloc_func)(voidpf opaque, uInt items, uInt size); 82 typedef void (*free_func)(voidpf opaque, voidpf address, 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) */ 616 uInt dictLengt [all...] |
| H A D | compress.c | 24 const uInt max = (uInt)-1; in compress2() 44 stream.avail_out = left > (uLong)max ? max : (uInt)left; in compress2() 48 stream.avail_in = sourceLen > (uLong)max ? max : (uInt)sourceLen; in compress2()
|
| H A D | deflate.c | 186 uInt wsize = s->w_size; in slide_hash() 250 uInt wsize = s->w_size; in fill_window() 304 uInt str = s->strstart - s->insert; in fill_window() 436 s->w_bits = (uInt)windowBits; in deflateInit2_() 440 s->hash_bits = (uInt)memLevel + 7; in deflateInit2_() 547 uInt dictLength) { in deflateSetDictionary() 549 uInt str, n; in deflateSetDictionary() 613 uInt *dictLength) { in deflateGetDictionary() 615 uInt len; in deflateGetDictionary() 807 s->good_match = (uInt)good_lengt [all...] |
| /openbsd-src/regress/lib/libz/ |
| H A D | example.c | 253 c_stream.avail_out = (uInt)comprLen; in test_large_deflate() 259 c_stream.avail_in = (uInt)uncomprLen; in test_large_deflate() 270 c_stream.avail_in = (uInt)uncomprLen/2; in test_large_deflate() 277 c_stream.avail_in = (uInt)uncomprLen; in test_large_deflate() 305 d_stream.avail_in = (uInt)comprLen; in test_large_inflate() 312 d_stream.avail_out = (uInt)uncomprLen; in test_large_inflate() 335 uInt len = (uInt)strlen(hello)+1; in test_flush() 347 c_stream.avail_out = (uInt)*comprLen; in test_flush() 385 d_stream.avail_out = (uInt)uncomprLen; in test_sync() 390 d_stream.avail_in = (uInt)comprLen-2; /* read all compressed data */ in test_sync() [all …]
|
| /openbsd-src/gnu/gcc/libdecnumber/ |
| H A 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()
|
| H A 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()
|
| H A 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()
|
| H A 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()
|
| H A 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 …]
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Compress-Raw-Bzip2/ |
| H A D | Bzip2.xs | 47 typedef unsigned int uInt; typedef 55 uInt bufsize; 471 uInt cur_length = NO_INIT 472 uInt increment = NO_INIT 474 uInt bufinc = NO_INIT 548 uInt cur_length = NO_INIT 549 uInt increment = NO_INIT 550 uInt bufinc = NO_INIT 610 uInt cur_length = NO_INIT 611 uInt increment = NO_INIT [all …]
|