Searched refs:uInt (Results 1 - 25 of 50) sorted by relevance

12

/openbsd-current/sys/lib/libz/
H A Ddeflate.h117 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 Dcompress.c24 const uInt max = (uInt)-1;
44 stream.avail_out = left > (uLong)max ? max : (uInt)left;
48 stream.avail_in = sourceLen > (uLong)max ? max : (uInt)sourceLen;
H A Dzutil.c36 switch ((int)(sizeof(uInt))) {
146 void ZLIB_INTERNAL zmemcpy(Bytef* dest, const Bytef* source, uInt len) {
153 int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len) {
154 uInt j;
162 void ZLIB_INTERNAL zmemzero(Bytef* dest, uInt len) {
264 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, uInt items, uInt size) {
282 extern voidp malloc(uInt size);
283 extern voidp calloc(uInt items, uInt siz
[all...]
H A Dzlib.h81 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 Ddeflate.c186 uInt wsize = s->w_size;
250 uInt wsize = s->w_size;
304 uInt str = s->strstart - s->insert;
436 s->w_bits = (uInt)windowBits;
440 s->hash_bits = (uInt)memLevel + 7;
547 uInt dictLength) {
549 uInt str, n;
613 uInt *dictLength) {
615 uInt len;
799 s->good_match = (uInt)good_lengt
[all...]
/openbsd-current/lib/libz/
H A Ddeflate.h117 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 Dcompress.c24 const uInt max = (uInt)-1;
44 stream.avail_out = left > (uLong)max ? max : (uInt)left;
48 stream.avail_in = sourceLen > (uLong)max ? max : (uInt)sourceLen;
H A Dzutil.c33 switch ((int)(sizeof(uInt))) {
143 void ZLIB_INTERNAL zmemcpy(Bytef* dest, const Bytef* source, uInt len) {
150 int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len) {
151 uInt j;
159 void ZLIB_INTERNAL zmemzero(Bytef* dest, uInt len) {
261 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, uInt items, uInt size) {
279 extern voidp malloc(uInt size);
280 extern voidp calloc(uInt items, uInt siz
[all...]
H A Duncompr.c29 const uInt max = (uInt)-1;
57 stream.avail_out = left > (uLong)max ? max : (uInt)left;
61 stream.avail_in = len > (uLong)max ? max : (uInt)len;
H A Dzlib.h81 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 Ddeflate.c186 uInt wsize = s->w_size;
250 uInt wsize = s->w_size;
304 uInt str = s->strstart - s->insert;
436 s->w_bits = (uInt)windowBits;
440 s->hash_bits = (uInt)memLevel + 7;
547 uInt dictLength) {
549 uInt str, n;
613 uInt *dictLength) {
615 uInt len;
799 s->good_match = (uInt)good_lengt
[all...]
/openbsd-current/gnu/usr.bin/perl/cpan/Compress-Raw-Zlib/zlib-src/
H A Ddeflate.h115 uInt w_size; /* LZ77 window size (32K by default) */
116 uInt w_bits; /* log2(w_size) (8..16) */
117 uInt w_mask; /* w_size - 1 */
142 uInt ins_h; /* hash index of string to be inserted */
143 uInt hash_size; /* number of elements in hash table */
144 uInt hash_bits; /* log2(hash_size) */
145 uInt hash_mask; /* hash_size-1 */
147 uInt hash_shift;
159 uInt match_length; /* length of best match */
162 uInt strstar
[all...]
H A Dzutil.c37 switch ((int)(sizeof(uInt))) {
154 uInt len)
165 uInt len)
167 uInt j;
177 uInt len)
282 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, uInt items, uInt size)
302 extern voidp malloc OF((uInt size));
303 extern voidp calloc OF((uInt items, uInt siz
[all...]
H A Dcompress.c31 const uInt max = (uInt)-1;
51 stream.avail_out = left > (uLong)max ? max : (uInt)left;
55 stream.avail_in = sourceLen > (uLong)max ? max : (uInt)sourceLen;
H A Duncompr.c35 const uInt max = (uInt)-1;
63 stream.avail_out = left > (uLong)max ? max : (uInt)left;
67 stream.avail_in = len > (uLong)max ? max : (uInt)len;
H A Dzlib.h81 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 *dictLengt
[all...]
H A Ddeflate.c87 local void putShortMSB OF((deflate_state *s, uInt b));
90 local uInt longest_match OF((deflate_state *s, IPos cur_match));
203 uInt wsize = s->w_size;
305 s->w_bits = (uInt)windowBits;
309 s->hash_bits = (uInt)memLevel + 7;
414 uInt dictLength)
417 uInt str, n;
483 uInt *dictLength)
486 uInt len;
664 s->good_match = (uInt)good_lengt
[all...]
/openbsd-current/regress/lib/libz/
H A Dexample.c253 c_stream.avail_out = (uInt)comprLen;
259 c_stream.avail_in = (uInt)uncomprLen;
270 c_stream.avail_in = (uInt)uncomprLen/2;
277 c_stream.avail_in = (uInt)uncomprLen;
305 d_stream.avail_in = (uInt)comprLen;
312 d_stream.avail_out = (uInt)uncomprLen;
335 uInt len = (uInt)strlen(hello)+1;
347 c_stream.avail_out = (uInt)*comprLen;
385 d_stream.avail_out = (uInt)uncomprLe
[all...]
/openbsd-current/gnu/gcc/libdecnumber/
H A DdecNumberLocal.h50 #define uInt uint32_t macro
113 extern const uInt powers[];
H A DdecUtility.c81 uInt dpd; /* densely packed decimal value */
82 uInt bin; /* binary value 0-999 */
97 uInt next = 0; /* work */
107 uInt rem = *source % powers[cut];
146 Unit temp = (Unit) ((uInt) (in * 6554) >> 16);
227 uInt dpd = 0; /* collector for 10 bits */
235 uInt bcd; /* BCD result */
236 uInt nibble; /* work */
H A Ddecimal128.c78 uInt status = 0; /* status accumulator */
83 uInt comb, exp; /* work */
150 uInt msd; /* work */
153 exp = (uInt) (dn->exponent + DECIMAL128_Bias); /* bias exponent */
198 uInt msd; /* coefficient MSD */
200 uInt top = d128->bytes[0] & 0x7f; /* top byte, less sign bit */
218 uInt comb = top >> 2; /* combination field */
219 uInt exp; /* exponent */
H A Ddecimal32.c78 uInt status = 0; /* status accumulator */
83 uInt comb, exp; /* work */
150 uInt msd; /* work */
153 exp = (uInt) (dn->exponent + DECIMAL32_Bias); /* bias exponent */
195 uInt msd; /* coefficient MSD */
197 uInt top = d32->bytes[0] & 0x7f; /* top byte, less sign bit */
215 uInt comb = top >> 2; /* combination field */
216 uInt exp; /* working exponent */
H A Ddecimal64.c78 uInt status = 0; /* status accumulator */
83 uInt comb, exp; /* work */
150 uInt msd; /* work */
153 exp = (uInt) (dn->exponent + DECIMAL64_Bias); /* bias exponent */
194 uInt msd; /* coefficient MSD */
196 uInt top = d64->bytes[0] & 0x7f; /* top byte, less sign bit */
214 uInt comb = top >> 2; /* combination field */
215 uInt exp; /* exponent */
H A DdecNumber.c175 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-current/gnu/usr.bin/perl/cpan/Compress-Raw-Bzip2/
H A DBzip2.xs47 typedef unsigned int uInt;
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 incremen
[all...]

Completed in 328 milliseconds

12