HomeSort by: relevance | last modified time | path
    Searched refs:uInt (Results 1 - 23 of 23) sorted by relevancy

  /src/common/dist/zlib/contrib/minizip/
zip.h 156 uInt size_extrafield_local,
158 uInt size_extrafield_global,
167 uInt size_extrafield_local,
169 uInt size_extrafield_global,
196 uInt size_extrafield_local,
198 uInt size_extrafield_global,
209 uInt size_extrafield_local,
211 uInt size_extrafield_global,
225 uInt size_extrafield_local,
227 uInt size_extrafield_global
    [all...]
zip.c 134 uInt pos_in_buffered_data; /* last written byte in buffered_data */
236 uInt copy_this;
237 uInt i;
250 copy_this = (uInt)ldi->avail_in_this_block;
252 copy_this = (uInt)len;
920 local int Write_LocalFileHeader(zip64_internal* zi, const char* filename, uInt size_extrafield_local, const void* extrafield_local) {
923 uInt size_filename = (uInt)strlen(filename);
924 uInt size_extrafield = size_extrafield_local;
1017 const void* extrafield_local, uInt size_extrafield_local
    [all...]
unzip.c 142 uInt size_local_extrafield;/* size of the local extra field */
1257 local int unz64local_CheckCurrentFileCoherencyHeader(unz64_s* s, uInt* piSizeVar,
1259 uInt * psize_local_extrafield) {
1326 *piSizeVar += (uInt)size_filename;
1332 *psize_local_extrafield = (uInt)size_extra_field;
1334 *piSizeVar += (uInt)size_extra_field;
1346 uInt iSizeVar;
1350 uInt size_local_extrafield; /* size of the local extra field */
1482 pfile_in_zip_read_info->stream.avail_in = (uInt)0;
1554 uInt iRead = 0
    [all...]
miniunz.c 266 uInt iLevel=(uInt)((file_info.flag & 0x6)/2);
314 uInt size_buf;
  /src/common/dist/zlib/
deflate.h 121 uInt w_size; /* LZ77 window size (32K by default) */
122 uInt w_bits; /* log2(w_size) (8..16) */
123 uInt w_mask; /* w_size - 1 */
148 uInt ins_h; /* hash index of string to be inserted */
149 uInt hash_size; /* number of elements in hash table */
150 uInt hash_bits; /* log2(hash_size) */
151 uInt hash_mask; /* hash_size-1 */
153 uInt hash_shift;
165 uInt match_length; /* length of best match */
168 uInt strstart; /* start of string to insert *
    [all...]
zutil.c 37 switch ((int)(sizeof(uInt))) {
147 void ZLIB_INTERNAL zmemcpy(Bytef* dest, const Bytef* source, uInt len) {
154 int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len) {
155 uInt j;
163 void ZLIB_INTERNAL zmemzero(Bytef* dest, uInt len) {
265 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, uInt items, uInt size) {
283 extern voidp malloc(uInt size);
284 extern voidp calloc(uInt items, uInt size)
    [all...]
compress.c 28 const uInt max = (uInt)-1;
48 stream.avail_out = left > (uLong)max ? max : (uInt)left;
52 stream.avail_in = sourceLen > (uLong)max ? max : (uInt)sourceLen;
uncompr.c 33 const uInt max = (uInt)-1;
61 stream.avail_out = left > (uLong)max ? max : (uInt)left;
65 stream.avail_in = len > (uLong)max ? max : (uInt)len;
zlib.h 83 typedef voidpf (*alloc_func)(voidpf opaque, uInt items, uInt size);
90 uInt avail_in; /* number of bytes available at next_in */
94 uInt avail_out; /* remaining free space at next_out */
122 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */
123 uInt extra_max; /* space at extra (only when reading header) */
125 uInt name_max; /* space at name (only when reading header) */
127 uInt comm_max; /* space at comment (only when reading header) */
615 uInt dictLength);
659 uInt *dictLength)
    [all...]
deflate.c 192 uInt wsize = s->w_size;
256 uInt wsize = s->w_size;
310 uInt str = s->strstart - s->insert;
442 s->w_bits = (uInt)windowBits;
446 s->hash_bits = (uInt)memLevel + 7;
553 uInt dictLength) {
555 uInt str, n;
619 uInt *dictLength) {
621 uInt len;
805 s->good_match = (uInt)good_length
    [all...]
zutil.h 228 void ZLIB_INTERNAL zmemcpy(Bytef* dest, const Bytef* source, uInt len);
229 int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len);
230 void ZLIB_INTERNAL zmemzero(Bytef* dest, uInt len);
zconf.h 161 # define uInt z_uInt
403 typedef unsigned int uInt; /* 16 bits or more */
414 typedef uInt FAR uIntf;
gzguts.h 122 extern voidp malloc(uInt size);
adler32.c 128 uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len) {
zconf.h.in 157 # define uInt z_uInt
395 typedef unsigned int uInt; /* 16 bits or more */
406 typedef uInt FAR uIntf;
zconf.h.cmakein 159 # define uInt z_uInt
397 typedef unsigned int uInt; /* 16 bits or more */
408 typedef uInt FAR uIntf;
inflate.c 237 if (bits > 16 || state->bits + (uInt)bits > 32) return Z_STREAM_ERROR;
240 state->bits += (uInt)bits;
1288 uInt *dictLength) {
1308 uInt dictLength) {
crc32.c 1018 uInt len) {
infback.c 59 state->wbits = (uInt)windowBits;
  /src/common/dist/zlib/test/
example.c 253 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)uncomprLen
    [all...]
  /src/sys/net/
zlib.c 246 extern void zmemcpy(Bytef* dest, const Bytef* source, uInt len);
247 extern int zmemcmp(const Bytef* s1, const Bytef* s2, uInt len);
248 extern void zmemzero(Bytef* dest, uInt len);
273 uInt len);
382 uInt w_size; /* LZ77 window size (32K by default) */
383 uInt w_bits; /* log2(w_size) (8..16) */
384 uInt w_mask; /* w_size - 1 */
409 uInt ins_h; /* hash index of string to be inserted */
410 uInt hash_size; /* number of elements in hash table */
411 uInt hash_bits; /* log2(hash_size) *
    [all...]
zlib.h 54 * charf intf uInt uIntf uLong uLonf
89 # define uInt z_uInt
262 typedef unsigned int uInt; /* 16 bits or more */
273 typedef uInt FAR uIntf;
357 typedef voidpf (*alloc_func)(voidpf, uInt, uInt);
364 uInt avail_in; /* number of bytes available at next_in */
368 uInt avail_out; /* remaining free space at next_out */
744 ZEXTERN int ZEXPORT deflateSetDictionary(z_streamp, const Bytef *, uInt);
863 ZEXTERN int ZEXPORT inflateSetDictionary(z_streamp, const Bytef *, uInt);
    [all...]
  /src/sys/arch/hpc/stand/hpcboot/
file_manager.cpp 39 uLong crc32(uLong crc, const Bytef *buf, uInt len);

Completed in 27 milliseconds