/external/libwebsockets/win32port/zlib/ |
D | deflate.c | 71 } block_state; typedef 73 typedef block_state (*compress_func) OF((deflate_state *s, int flush)); typedef 77 local block_state deflate_stored OF((deflate_state *s, int flush)); 78 local block_state deflate_fast OF((deflate_state *s, int flush)); 80 local block_state deflate_slow OF((deflate_state *s, int flush)); 82 local block_state deflate_rle OF((deflate_state *s, int flush)); 83 local block_state deflate_huff OF((deflate_state *s, int flush)); 830 block_state bstate; 1474 local block_state deflate_stored(s, flush) in deflate_stored() 1532 local block_state deflate_fast(s, flush) in deflate_fast() [all …]
|
/external/rust/crates/libz-sys/src/zlib-ng/ |
D | deflate.c | 103 typedef block_state (*compress_func) (deflate_state *s, int flush); 107 static block_state deflate_stored (deflate_state *s, int flush); 108 Z_INTERNAL block_state deflate_fast (deflate_state *s, int flush); 109 Z_INTERNAL block_state deflate_quick (deflate_state *s, int flush); 111 Z_INTERNAL block_state deflate_medium (deflate_state *s, int flush); 113 Z_INTERNAL block_state deflate_slow (deflate_state *s, int flush); 114 static block_state deflate_rle (deflate_state *s, int flush); 115 static block_state deflate_huff (deflate_state *s, int flush); 987 block_state bstate; in PREFIX() 1363 static block_state deflate_stored(deflate_state *s, int flush) { in deflate_stored() [all …]
|
D | deflate_fast.c | 19 Z_INTERNAL block_state deflate_fast(deflate_state *s, int flush) { in deflate_fast()
|
D | deflate_quick.c | 46 Z_INTERNAL block_state deflate_quick(deflate_state *s, int flush) { in deflate_quick()
|
D | deflate_slow.c | 17 Z_INTERNAL block_state deflate_slow(deflate_state *s, int flush) { in deflate_slow()
|
D | deflate.h | 276 } block_state; typedef
|
D | deflate_medium.c | 163 Z_INTERNAL block_state deflate_medium(deflate_state *s, int flush) { in deflate_medium()
|
/external/python/cpython2/Modules/zlib/ |
D | deflate.c | 71 } block_state; typedef 73 typedef block_state (*compress_func) OF((deflate_state *s, int flush)); typedef 79 local block_state deflate_stored OF((deflate_state *s, int flush)); 80 local block_state deflate_fast OF((deflate_state *s, int flush)); 82 local block_state deflate_slow OF((deflate_state *s, int flush)); 84 local block_state deflate_rle OF((deflate_state *s, int flush)); 85 local block_state deflate_huff OF((deflate_state *s, int flush)); 998 block_state bstate; 1643 local block_state deflate_stored(s, flush) in deflate_stored() 1824 local block_state deflate_fast(s, flush) in deflate_fast() [all …]
|
/external/zlib/ |
D | deflate.c | 85 } block_state; typedef 87 typedef block_state (*compress_func) OF((deflate_state *s, int flush)); typedef 93 local block_state deflate_stored OF((deflate_state *s, int flush)); 94 local block_state deflate_fast OF((deflate_state *s, int flush)); 96 local block_state deflate_slow OF((deflate_state *s, int flush)); 98 local block_state deflate_rle OF((deflate_state *s, int flush)); 99 local block_state deflate_huff OF((deflate_state *s, int flush)); 1044 block_state bstate; 1719 local block_state deflate_stored(s, flush) in deflate_stored() 1900 local block_state deflate_fast(s, flush) in deflate_fast() [all …]
|
/external/rust/crates/libz-sys/src/zlib/ |
D | deflate.c | 71 } block_state; typedef 73 typedef block_state (*compress_func) OF((deflate_state *s, int flush)); typedef 79 local block_state deflate_stored OF((deflate_state *s, int flush)); 80 local block_state deflate_fast OF((deflate_state *s, int flush)); 82 local block_state deflate_slow OF((deflate_state *s, int flush)); 84 local block_state deflate_rle OF((deflate_state *s, int flush)); 85 local block_state deflate_huff OF((deflate_state *s, int flush)); 998 block_state bstate; 1643 local block_state deflate_stored(s, flush) in deflate_stored() 1824 local block_state deflate_fast(s, flush) in deflate_fast() [all …]
|
/external/rust/crates/libz-sys/src/zlib-ng/arch/s390/ |
D | dfltcc_deflate.h | 7 int Z_INTERNAL dfltcc_deflate(PREFIX3(streamp) strm, int flush, block_state *result);
|
D | dfltcc_deflate.c | 98 int Z_INTERNAL dfltcc_deflate(PREFIX3(streamp) strm, int flush, block_state *result) { in dfltcc_deflate()
|
D | README.md | 156 `block_state *result` parameter.
|
/external/zlib/patches/ |
D | 0006-fix-check_match.patch | 25 @@ -2060,7 +2060,13 @@ local block_state deflate_slow(s, flush)
|
D | 0001-simd.patch | 557 @@ -86,7 +87,7 @@ local block_state deflate_huff OF((deflate_state *s, int flush)); 755 @@ -1847,7 +1892,7 @@ local block_state deflate_fast(s, flush) 764 @@ -1878,7 +1923,7 @@ local block_state deflate_fast(s, flush) 773 @@ -1950,7 +1995,7 @@ local block_state deflate_slow(s, flush) 782 @@ -2001,7 +2046,7 @@ local block_state deflate_slow(s, flush) 791 @@ -2161,3 +2206,37 @@ local block_state deflate_huff(s, flush)
|