/third_party/zlib/ |
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 | 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 | 191 uInt wsize = s->w_size; in slide_hash() 257 uInt wsize = s->w_size; in fill_window() 311 uInt str = s->strstart - s->insert; in fill_window() 443 s->w_bits = (uInt)windowBits; in deflateInit2_() 447 s->hash_bits = (uInt)memLevel + 7; in deflateInit2_() 555 uInt dictLength) { in deflateSetDictionary() 557 uInt str, n; in deflateSetDictionary() 621 uInt *dictLength) { in deflateGetDictionary() 623 uInt len; in deflateGetDictionary() 808 s->good_match = (uInt)good_lengt in deflateTune() [all...] |
/third_party/node/deps/v8/third_party/zlib/ |
H A D | zlib.h | 81 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 D | deflate.c | 101 local void putShortMSB OF((deflate_state *s, uInt b)); 107 uInt longest_match OF((deflate_state *s, IPos cur_match)); 109 local uInt longest_match OF((deflate_state *s, IPos cur_match)); 203 uInt wsize = s->w_size; 313 s->w_bits = (uInt)windowBits; 434 uInt dictLength; 437 uInt str, n; 499 uInt *dictLength; 502 uInt len; 680 s->good_match = (uInt)good_lengt [all...] |
/third_party/skia/third_party/externals/zlib/ |
H A D | zlib.h | 81 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 D | deflate.c | 101 local void putShortMSB OF((deflate_state *s, uInt b)); 107 uInt longest_match OF((deflate_state *s, IPos cur_match)); 109 local uInt longest_match OF((deflate_state *s, IPos cur_match)); 198 uInt wsize = s->w_size; 308 s->w_bits = (uInt)windowBits; 429 uInt dictLength; 432 uInt str, n; 494 uInt *dictLength; 497 uInt len; 674 s->good_match = (uInt)good_lengt [all...] |
/kernel/linux/linux-5.10/lib/zlib_deflate/ |
H A D | deflate.c | 77 static void putShortMSB (deflate_state *s, uInt b); 79 static uInt longest_match (deflate_state *s, IPos cur_match); 321 uInt b in putShortMSB() 356 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8; in zlib_deflate() 357 uInt level_flags = (s->level-1) >> 1; in zlib_deflate() 369 putShortMSB(s, (uInt)(strm->adler >> 16)); in zlib_deflate() 370 putShortMSB(s, (uInt)(strm->adler & 0xffff)); in zlib_deflate() 457 putShortMSB(s, (uInt)(strm->adler >> 16)); in zlib_deflate() 458 putShortMSB(s, (uInt)(strm->adler & 0xffff)); in zlib_deflate() 558 static uInt longest_matc [all...] |
/kernel/linux/linux-6.6/lib/zlib_deflate/ |
H A D | deflate.c | 77 static void putShortMSB (deflate_state *s, uInt b); 79 static uInt longest_match (deflate_state *s, IPos cur_match); 321 uInt b in putShortMSB() 356 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8; in zlib_deflate() 357 uInt level_flags = (s->level-1) >> 1; in zlib_deflate() 369 putShortMSB(s, (uInt)(strm->adler >> 16)); in zlib_deflate() 370 putShortMSB(s, (uInt)(strm->adler & 0xffff)); in zlib_deflate() 457 putShortMSB(s, (uInt)(strm->adler >> 16)); in zlib_deflate() 458 putShortMSB(s, (uInt)(strm->adler & 0xffff)); in zlib_deflate() 565 static uInt longest_matc [all...] |
/third_party/node/deps/v8/third_party/zlib/contrib/minizip/ |
H A D | unzip.h | 86 uInt tm_sec; /* seconds after the minute - [0,59] */ 87 uInt tm_min; /* minutes after the hour - [0,59] */ 88 uInt tm_hour; /* hours since midnight - [0,23] */ 89 uInt tm_mday; /* day of the month - [1,31] */ 90 uInt tm_mon; /* months since January - [0,11] */ 91 uInt tm_year; /* years - [1980..2044] */
|
H A D | unzip.c | 143 uInt size_local_extrafield;/* size of the local extra field */ 852 ptm->tm_mday = (uInt)(uDate&0x1f) ; in unz64local_DosDateToTmuDate() 853 ptm->tm_mon = (uInt)((((uDate)&0x1E0)/0x20)-1) ; in unz64local_DosDateToTmuDate() 854 ptm->tm_year = (uInt)(((uDate&0x0FE00)/0x0200)+1980) ; in unz64local_DosDateToTmuDate() 856 ptm->tm_hour = (uInt) ((ulDosDate &0xF800)/0x800); in unz64local_DosDateToTmuDate() 857 ptm->tm_min = (uInt) ((ulDosDate&0x7E0)/0x20) ; in unz64local_DosDateToTmuDate() 858 ptm->tm_sec = (uInt) (2*(ulDosDate&0x1f)) ; in unz64local_DosDateToTmuDate() 1381 local int unz64local_CheckCurrentFileCoherencyHeader (unz64_s* s, uInt* piSizeVar, in unz64local_CheckCurrentFileCoherencyHeader() 1383 uInt * psize_local_extrafield) in unz64local_CheckCurrentFileCoherencyHeader() 1451 *piSizeVar += (uInt)size_filenam in unz64local_CheckCurrentFileCoherencyHeader() [all...] |
/third_party/skia/third_party/externals/zlib/contrib/minizip/ |
H A D | unzip.h | 86 uInt tm_sec; /* seconds after the minute - [0,59] */ 87 uInt tm_min; /* minutes after the hour - [0,59] */ 88 uInt tm_hour; /* hours since midnight - [0,23] */ 89 uInt tm_mday; /* day of the month - [1,31] */ 90 uInt tm_mon; /* months since January - [0,11] */ 91 uInt tm_year; /* years - [1980..2044] */
|
H A D | unzip.c | 143 uInt size_local_extrafield;/* size of the local extra field */ 852 ptm->tm_mday = (uInt)(uDate&0x1f) ; in unz64local_DosDateToTmuDate() 853 ptm->tm_mon = (uInt)((((uDate)&0x1E0)/0x20)-1) ; in unz64local_DosDateToTmuDate() 854 ptm->tm_year = (uInt)(((uDate&0x0FE00)/0x0200)+1980) ; in unz64local_DosDateToTmuDate() 856 ptm->tm_hour = (uInt) ((ulDosDate &0xF800)/0x800); in unz64local_DosDateToTmuDate() 857 ptm->tm_min = (uInt) ((ulDosDate&0x7E0)/0x20) ; in unz64local_DosDateToTmuDate() 858 ptm->tm_sec = (uInt) (2*(ulDosDate&0x1f)) ; in unz64local_DosDateToTmuDate() 1381 local int unz64local_CheckCurrentFileCoherencyHeader (unz64_s* s, uInt* piSizeVar, in unz64local_CheckCurrentFileCoherencyHeader() 1383 uInt * psize_local_extrafield) in unz64local_CheckCurrentFileCoherencyHeader() 1451 *piSizeVar += (uInt)size_filenam in unz64local_CheckCurrentFileCoherencyHeader() [all...] |
/third_party/node/deps/zlib/ |
H A D | deflate.c | 184 uInt wsize = s->w_size; in slide_hash() 252 uInt wsize = s->w_size; in fill_window() 308 uInt str = s->strstart - s->insert; in fill_window() 320 uInt str = s->strstart - s->insert; in fill_window() 461 s->w_bits = (uInt)windowBits; in deflateInit2_() 593 uInt dictLength) { in deflateSetDictionary() 595 uInt str, n; in deflateSetDictionary() 655 uInt *dictLength) { in deflateGetDictionary() 657 uInt len; in deflateGetDictionary() 841 s->good_match = (uInt)good_lengt in deflateTune() [all...] |
/third_party/libwebsockets/win32port/zlib/ |
H A D | deflate.c | 85 local void putShortMSB OF((deflate_state *s, uInt b));
90 uInt longest_match OF((deflate_state *s, IPos cur_match));
92 local uInt longest_match OF((deflate_state *s, IPos cur_match));
351 uInt dictLength;
354 uInt length = dictLength;
355 uInt n;
599 uInt b;
704 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8;
705 uInt level_flags;
724 putShortMSB(s, (uInt)(str [all...] |
H A D | uncompr.c | 34 stream.avail_in = (uInt)sourceLen;
39 stream.avail_out = (uInt)*destLen;
|
/third_party/skia/third_party/externals/freetype/src/gzip/ |
H A D | inffixed.h | 10 local const uInt fixed_bl = 9; 11 local const uInt fixed_bd = 5;
|
H A D | zutil.h | 179 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 180 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); 181 extern void zmemzero OF((Bytef* dest, uInt len)); 206 uInt len));
|
H A D | inflate.c | 37 uInt method; /* if FLAGS, method byte */ 42 uInt marker; /* if BAD, inflateSync's marker bytes count */ 47 uInt wbits; /* log2(window size) (8..15, defaults to 15) */ 121 z->state->wbits = (uInt)w; in inflateInit2_() 125 inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, (uInt)1 << w)) in inflateInit2_() 152 uInt b; in inflate()
|
H A D | infcodes.h | 18 uInt, uInt,
|
/third_party/node/deps/zlib/google/ |
H A D | zip_internal.cc | 264 .tm_sec = static_cast<uInt>(file_time_parts.second), in TimeToZipFileInfo() 265 .tm_min = static_cast<uInt>(file_time_parts.minute), in TimeToZipFileInfo() 266 .tm_hour = static_cast<uInt>(file_time_parts.hour), in TimeToZipFileInfo() 267 .tm_mday = static_cast<uInt>(file_time_parts.day_of_month), in TimeToZipFileInfo() 268 .tm_mon = static_cast<uInt>(file_time_parts.month - 1), in TimeToZipFileInfo() 269 .tm_year = static_cast<uInt>(file_time_parts.year)}; in TimeToZipFileInfo()
|
/third_party/zlib/contrib/minizip/ |
H A D | unzip.c | 142 uInt size_local_extrafield;/* size of the local extra field */ 1584 local int unz64local_CheckCurrentFileCoherencyHeader(unz64_s* s, uInt* piSizeVar, in unz64local_CheckCurrentFileCoherencyHeader() 1586 uInt * psize_local_extrafield) in unz64local_CheckCurrentFileCoherencyHeader() 1654 *piSizeVar += (uInt)size_filename; in unz64local_CheckCurrentFileCoherencyHeader() 1660 *psize_local_extrafield = (uInt)size_extra_field; in unz64local_CheckCurrentFileCoherencyHeader() 1662 *piSizeVar += (uInt)size_extra_field; in unz64local_CheckCurrentFileCoherencyHeader() 1674 uInt iSizeVar; in unzOpenCurrentFile3() 1678 uInt size_local_extrafield; /* size of the local extra field */ in unzOpenCurrentFile3() 1810 pfile_in_zip_read_info->stream.avail_in = (uInt)0; in unzOpenCurrentFile3() 1882 uInt iRea in unzReadCurrentFile() [all...] |
/third_party/node/deps/v8/third_party/zlib/contrib/optimizations/ |
H A D | slide_hash_neon.h | 12 const uInt hash_size, in neon_slide_hash_update() 46 const uInt hash_size) in neon_slide_hash()
|
/third_party/skia/third_party/externals/zlib/contrib/optimizations/ |
H A D | slide_hash_neon.h | 12 const uInt hash_size, in neon_slide_hash_update() 46 const uInt hash_size) in neon_slide_hash()
|
/third_party/curl/lib/ |
H A D | content_encoding.c | 103 uInt trailerlen; /* Remaining trailer byte count. */ 157 uInt len = z->avail_in < zp->trailerlen? z->avail_in: zp->trailerlen; in process_trailer() 182 uInt nread = z->avail_in; in inflate_stream() 308 z->avail_in = (uInt) nbytes; in deflate_do_write() 466 z->avail_in = (uInt) nbytes; in gzip_do_write() 497 z->avail_in = (uInt) (nbytes - hlen); in gzip_do_write() 509 z->avail_in = (uInt) nbytes; in gzip_do_write() 531 z->avail_in += (uInt) nbytes; in gzip_do_write() 545 z->avail_in = (uInt) (z->avail_in - hlen); in gzip_do_write() 563 z->avail_in = (uInt) nbyte in gzip_do_write() [all...] |