Home
last modified time | relevance | path

Searched refs:uInt (Results 1 – 25 of 56) sorted by relevance

123

/freebsd-12.1/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Ddeflate.h110 uInt w_bits; /* log2(w_size) (8..16) */
111 uInt w_mask; /* w_size - 1 */
138 uInt hash_bits; /* log2(hash_size) */
139 uInt hash_mask; /* hash_size-1 */
141 uInt hash_shift;
160 uInt prev_length;
165 uInt max_chain_length;
171 uInt max_lazy_match;
185 uInt good_match;
216 uInt lit_bufsize;
[all …]
H A Dzutil.c42 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) :
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 dictLength));
1262 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
[all …]
H A Ddeflate.c324 uInt dictLength;
327 uInt length = dictLength;
328 uInt n;
526 uInt b;
632 uInt level_flags;
1033 local uInt longest_match(s, cur_match) in longest_match()
1049 uInt wmask = s->w_mask;
1172 if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
1231 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
1278 uInt wsize = s->w_size;
[all …]
H A Dzconf.h102 typedef unsigned int uInt; typedef
107 typedef uInt uIntf;
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-12.1/sys/contrib/zlib/
H A Ddeflate.h116 uInt w_bits; /* log2(w_size) (8..16) */
117 uInt w_mask; /* w_size - 1 */
144 uInt hash_bits; /* log2(hash_size) */
145 uInt hash_mask; /* hash_size-1 */
147 uInt hash_shift;
166 uInt prev_length;
171 uInt max_chain_length;
177 uInt max_lazy_match;
191 uInt good_match;
222 uInt lit_bufsize;
[all …]
H A Dzutil.c37 switch ((int)(sizeof(uInt))) { in zlibCompileFlags()
152 uInt len;
163 uInt len;
165 uInt j;
175 uInt len;
280 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc()
300 extern voidp malloc OF((uInt size));
301 extern voidp calloc OF((uInt items, uInt size));
311 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
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 *dictLength));
887 uInt dictLength));
[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 Ddeflate.c206 uInt wsize = s->w_size;
379 uInt dictLength;
382 uInt str, n;
448 uInt *dictLength;
451 uInt len;
718 uInt b;
817 uInt level_flags;
1252 uInt wmask = s->w_mask;
1375 if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
1435 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
[all …]
H A Dzutil.h231 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
232 int ZLIB_INTERNAL zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
233 void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
/freebsd-12.1/sys/libkern/
H A Dzlib.c840 uInt n;
948 uInt b;
3205 uInt b;
3512 uInt, uInt,
3713 uInt w;
4029 uInt n;
4611 uInt,
4612 uInt,
4643 uInt len;
4886 uInt n;
[all …]
/freebsd-12.1/sys/sys/
H A Dzlib.h100 # define uInt z_uInt macro
215 typedef unsigned int uInt; /* 16 bits or more */ typedef
226 typedef uInt FAR uIntf;
275 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
282 uInt avail_in; /* number of bytes available at next_in */
286 uInt avail_out; /* remaining free space at next_out */
655 uInt dictLength));
778 uInt dictLength));
949 extern uLong EXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
967 extern uLong EXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len));
H A Dzutil.h190 extern void zmemcpy OF((Bytef* dest, Bytef* source, uInt len));
191 extern int zmemcmp OF((Bytef* s1, Bytef* s2, uInt len));
192 extern void zmemzero OF((Bytef* dest, uInt len));
218 typedef uLong (*check_func) OF((uLong check, const Bytef *buf, uInt len));
/freebsd-12.1/sys/contrib/zstd/zlibWrapper/examples/
H A Dexample_original.c311 c_stream.avail_out = (uInt)comprLen;
317 c_stream.avail_in = (uInt)uncomprLen;
328 c_stream.avail_in = (uInt)comprLen/2;
335 c_stream.avail_in = (uInt)uncomprLen;
365 d_stream.avail_in = (uInt)comprLen;
398 uInt len = (uInt)strlen(hello)+1;
410 c_stream.avail_out = (uInt)*comprLen;
450 d_stream.avail_out = (uInt)uncomprLen;
494 c_stream.avail_out = (uInt)comprLen;
525 d_stream.avail_in = (uInt)comprLen;
[all …]
H A Dexample.c319 c_stream.avail_out = (uInt)comprLen;
325 c_stream.avail_in = (uInt)uncomprLen;
336 c_stream.avail_in = (uInt)comprLen/2;
343 c_stream.avail_in = (uInt)uncomprLen;
373 d_stream.avail_in = (uInt)comprLen;
406 uInt len = (uInt)strlen(hello)+1;
418 c_stream.avail_out = (uInt)*comprLen;
458 d_stream.avail_out = (uInt)uncomprLen;
502 c_stream.avail_out = (uInt)comprLen;
533 d_stream.avail_in = (uInt)comprLen;
[all …]
/freebsd-12.1/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;
381 uInt len = (uInt)strlen(hello)+1;
393 c_stream.avail_out = (uInt)*comprLen;
433 d_stream.avail_out = (uInt)uncomprLen;
477 c_stream.avail_out = (uInt)comprLen;
508 d_stream.avail_in = (uInt)comprLen;
[all …]
/freebsd-12.1/contrib/gcclibs/libdecnumber/
H A Ddecimal64.c78 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 Ddecimal128.c78 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 DdecUtility.c81 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 Ddecimal32.c78 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 DdecNumber.c220 uByte, uInt *);
226 Int *, uInt *);
242 Int, Int *, uInt *);
1838 uInt status = 0; in decNumberToIntegralValue()
4372 uInt cut; /* .. */ in decTrim()
4453 uInt next; /* work */ in decShiftToMost()
4673 uInt temp; /* .. */ in decSetCoeff()
5607 uInt u, d; /* .. */
5769 uInt maxuint; /* .. */
5906 decMalloc (uInt n)
[all …]
H A DdecNumberLocal.h50 #define uInt uint32_t macro
113 extern const uInt powers[];

123