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

12

/freebsd-11-stable/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Ddeflate.h100 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 Dzutil.c42 switch (sizeof(uInt)) {
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 Dzlib.h79 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 dictLengt
[all...]
H A Dzconf.h102 typedef unsigned int uInt; typedef
107 typedef uInt uIntf;
H A Ddeflate.c88 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_flag
[all...]
H A Dzutil.h240 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-11-stable/sys/contrib/zlib/
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 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 Dzutil.c37 switch ((int)(sizeof(uInt))) {
152 uInt len;
163 uInt len;
165 uInt j;
175 uInt len;
280 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size)
300 extern voidp malloc OF((uInt size));
301 extern voidp calloc OF((uInt items, uInt siz
[all...]
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) */
613 uInt dictLength));
657 uInt *dictLengt
[all...]
H A Ddeflate.c87 local void putShortMSB OF((deflate_state *s, uInt b));
93 uInt longest_match OF((deflate_state *s, IPos cur_match));
95 local uInt longest_match OF((deflate_state *s, IPos cur_match));
206 uInt wsize = s->w_size;
312 s->w_bits = (uInt)windowBits;
316 s->hash_bits = (uInt)memLevel + 7;
379 uInt dictLength;
382 uInt str, n;
448 uInt *dictLength;
451 uInt le
[all...]
/freebsd-11-stable/sys/sys/
H A Dzlib.h98 # 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 le
[all...]
H A Dzutil.h193 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-11-stable/sys/libkern/
H A Dzlib.c229 extern void zmemcpy OF((Bytef* dest, Bytef* source, uInt len));
230 extern int zmemcmp OF((Bytef* s1, Bytef* s2, uInt len));
231 extern void zmemzero OF((Bytef* dest, uInt len));
257 typedef uLong (*check_func) OF((uLong check, const Bytef *buf, uInt len));
366 uInt w_size; /* LZ77 window size (32K by default) */
367 uInt w_bits; /* log2(w_size) (8..16) */
368 uInt w_mask; /* w_size - 1 */
393 uInt ins_h; /* hash index of string to be inserted */
394 uInt hash_size; /* number of elements in hash table */
395 uInt hash_bit
[all...]
/freebsd-11-stable/contrib/gcclibs/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...]
/freebsd-11-stable/sys/contrib/zlib/test/
H A Dexample.c294 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)uncomprLe
[all...]
/freebsd-11-stable/contrib/subversion/subversion/libsvn_subr/
H A Dadler32.c66 (uInt)len);
/freebsd-11-stable/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_gzip.c210 data->stream.avail_out = (uInt)data->compressed_buffer_size;
286 data->crc = crc32(data->crc, (const Bytef *)buff, (uInt)length);
291 data->stream.avail_in = (uInt)length;
362 (uInt)data->compressed_buffer_size;
/freebsd-11-stable/stand/libsa/
H A Dgzipfs.c119 uInt len;
140 len = (uInt)get_byte(zf, &zf->zf_dataoffset);
141 len += ((uInt)get_byte(zf, &zf->zf_dataoffset))<<8;

Completed in 184 milliseconds

12