Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
contrib/optimizations/ | 12-May-2024 | - | 2,606 | 1,825 | ||
google/ | 12-May-2024 | - | 3,914 | 2,701 | ||
patches/ | 12-May-2024 | - | 1,535 | 1,479 | ||
win32/ | 12-May-2024 | - | 95 | 94 | ||
BUILD.gn | D | 12-May-2024 | 8.4 KiB | 380 | 314 | |
LICENSE | D | 12-May-2024 | 912 | 20 | 15 | |
OWNERS | D | 12-May-2024 | 128 | 8 | 6 | |
README.chromium | D | 12-May-2024 | 1 KiB | 29 | 25 | |
adler32.c | D | 12-May-2024 | 6 KiB | 217 | 164 | |
adler32_simd.c | D | 12-May-2024 | 10.5 KiB | 371 | 190 | |
adler32_simd.h | D | 12-May-2024 | 385 | 17 | 7 | |
arm_features.c | D | 12-May-2024 | 3.4 KiB | 91 | 72 | |
arm_features.h | D | 12-May-2024 | 372 | 14 | 4 | |
chromeconf.h | D | 12-May-2024 | 6.6 KiB | 196 | 155 | |
compress.c | D | 12-May-2024 | 3.2 KiB | 97 | 55 | |
crc32.c | D | 12-May-2024 | 16.1 KiB | 525 | 346 | |
crc32.h | D | 12-May-2024 | 29.8 KiB | 442 | 437 | |
crc32_simd.c | D | 12-May-2024 | 7 KiB | 248 | 142 | |
crc32_simd.h | D | 12-May-2024 | 1,009 | 37 | 13 | |
crc_folding.c | D | 12-May-2024 | 15.9 KiB | 506 | 376 | |
deflate.c | D | 12-May-2024 | 79.1 KiB | 2,212 | 1,459 | |
deflate.h | D | 12-May-2024 | 13.2 KiB | 357 | 168 | |
fill_window_sse.c | D | 12-May-2024 | 6.4 KiB | 179 | 102 | |
gzclose.c | D | 12-May-2024 | 678 | 26 | 14 | |
gzguts.h | D | 12-May-2024 | 6.7 KiB | 219 | 157 | |
gzlib.c | D | 12-May-2024 | 16.2 KiB | 638 | 482 | |
gzread.c | D | 12-May-2024 | 20 KiB | 659 | 450 | |
gzwrite.c | D | 12-May-2024 | 18.8 KiB | 666 | 477 | |
infback.c | D | 12-May-2024 | 22.2 KiB | 642 | 493 | |
inffast.c | D | 12-May-2024 | 13 KiB | 331 | 259 | |
inffast.h | D | 12-May-2024 | 1.1 KiB | 27 | 3 | |
inffixed.h | D | 12-May-2024 | 6.2 KiB | 95 | 84 | |
inflate.c | D | 12-May-2024 | 53.7 KiB | 1,564 | 1,207 | |
inflate.h | D | 12-May-2024 | 6.5 KiB | 126 | 74 | |
inftrees.c | D | 12-May-2024 | 12.7 KiB | 305 | 174 | |
inftrees.h | D | 12-May-2024 | 2.9 KiB | 63 | 16 | |
simd_stub.c | D | 12-May-2024 | 772 | 36 | 24 | |
trees.c | D | 12-May-2024 | 41.9 KiB | 1,182 | 730 | |
trees.h | D | 12-May-2024 | 8.3 KiB | 129 | 120 | |
uncompr.c | D | 12-May-2024 | 2.9 KiB | 94 | 61 | |
x86.c | D | 12-May-2024 | 2.5 KiB | 102 | 75 | |
x86.h | D | 12-May-2024 | 333 | 17 | 7 | |
zconf.h | D | 12-May-2024 | 16.4 KiB | 550 | 432 | |
zlib.gyp | D | 12-May-2024 | 4.8 KiB | 166 | 164 | |
zlib.h | D | 12-May-2024 | 94.5 KiB | 1,936 | 330 | |
zutil.c | D | 12-May-2024 | 7.1 KiB | 326 | 245 | |
zutil.h | D | 12-May-2024 | 7.5 KiB | 293 | 211 |
README.chromium
1Name: zlib 2Short Name: zlib 3URL: http://zlib.net/ 4Version: 1.2.11 5Security Critical: yes 6License: Custom license 7License File: LICENSE 8License Android Compatible: yes 9 10Description: 11"A massively spiffy yet delicately unobtrusive compression library." 12 13zlib is a free, general-purpose, legally unencumbered lossless data-compression 14library. zlib implements the "deflate" compression algorithm described by RFC 151951, which combines the LZ77 (Lempel-Ziv) algorithm with Huffman coding. zlib 16also implements the zlib (RFC 1950) and gzip (RFC 1952) wrapper formats. 17 18Local Modifications: 19 - Only source code from the zlib distribution used to build the zlib and 20 minizip libraries are present. Many other files have been omitted. Only *.c 21 and *.h files from the upstream root directory and contrib/minizip were 22 imported. 23 - The contents of the google directory are original Chromium-specific 24 additions. 25 - Added chromeconf.h 26 - Plus the changes in 'patches' folder. 27 - Code in contrib/ other than contrib/minizip was added to match zlib's 28 contributor layout. 29