Home
last modified time | relevance | path

Searched refs:block_state (Results 1 – 20 of 20) sorted by relevance

/third_party/boost/libs/beast/include/boost/beast/zlib/detail/
Ddeflate_stream.hpp221 enum block_state enum in boost::beast::zlib::detail::deflate_stream
246 typedef block_state(self::*compress_func)(z_params& zs, Flush flush);
660 BOOST_BEAST_DECL block_state f_stored (z_params& zs, Flush flush);
661 BOOST_BEAST_DECL block_state f_fast (z_params& zs, Flush flush);
662 BOOST_BEAST_DECL block_state f_slow (z_params& zs, Flush flush);
663 BOOST_BEAST_DECL block_state f_rle (z_params& zs, Flush flush);
664 BOOST_BEAST_DECL block_state f_huff (z_params& zs, Flush flush);
666 block_state
672 block_state
678 block_state
[all …]
Ddeflate_stream.ipp425 block_state bstate;
1823 block_state
1899 block_state
2012 block_state
2157 block_state
2243 block_state
/third_party/boost/boost/beast/zlib/detail/
Ddeflate_stream.hpp221 enum block_state enum in boost::beast::zlib::detail::deflate_stream
246 typedef block_state(self::*compress_func)(z_params& zs, Flush flush);
660 BOOST_BEAST_DECL block_state f_stored (z_params& zs, Flush flush);
661 BOOST_BEAST_DECL block_state f_fast (z_params& zs, Flush flush);
662 BOOST_BEAST_DECL block_state f_slow (z_params& zs, Flush flush);
663 BOOST_BEAST_DECL block_state f_rle (z_params& zs, Flush flush);
664 BOOST_BEAST_DECL block_state f_huff (z_params& zs, Flush flush);
666 block_state
672 block_state
678 block_state
[all …]
Ddeflate_stream.ipp425 block_state bstate;
1823 block_state
1899 block_state
2012 block_state
2157 block_state
2243 block_state
/third_party/ffmpeg/libavcodec/
Dsnowenc.c232 uint8_t p_state[sizeof(s->block_state)]; in encode_q_branch()
233 uint8_t i_state[sizeof(s->block_state)]; in encode_q_branch()
273 av_assert0(sizeof(s->block_state) >= 256); in encode_q_branch()
367 memcpy(p_state, s->block_state, sizeof(s->block_state)); in encode_q_branch()
399 memcpy(i_state, s->block_state, sizeof(s->block_state)); in encode_q_branch()
426 put_rac(&s->c, &s->block_state[4 + s_context], 0); in encode_q_branch()
444 memcpy(s->block_state, i_state, sizeof(s->block_state)); in encode_q_branch()
452 memcpy(s->block_state, p_state, sizeof(s->block_state)); in encode_q_branch()
483 put_rac(&s->c, &s->block_state[4 + s_context], 1); in encode_q_branch2()
485 put_rac(&s->c, &s->block_state[4 + s_context], 0); in encode_q_branch2()
[all …]
Dsnowdec.c175 if(level==s->block_max_depth || get_rac(&s->c, &s->block_state[4 + s_context])){ in decode_q_branch()
185 type= get_rac(&s->c, &s->block_state[1 + left->type + top->type]) ? BLOCK_INTRA : 0; in decode_q_branch()
189 ld = get_symbol(&s->c, &s->block_state[32], 1); in decode_q_branch()
195 cbd = get_symbol(&s->c, &s->block_state[64], 1); in decode_q_branch()
196 crd = get_symbol(&s->c, &s->block_state[96], 1); in decode_q_branch()
205 ref= get_symbol(&s->c, &s->block_state[128 + 1024 + 32*ref_context], 0); in decode_q_branch()
211 mx+= (unsigned)get_symbol(&s->c, &s->block_state[128 + 32*(mx_context + 16*!!ref)], 1); in decode_q_branch()
212 my+= (unsigned)get_symbol(&s->c, &s->block_state[128 + 32*(my_context + 16*!!ref)], 1); in decode_q_branch()
Dsnow.c108 memset(s->block_state, MID_STATE, sizeof(s->block_state)); in ff_snow_reset_contexts()
Dsnow.h132 uint8_t block_state[128 + 32*128]; member
/third_party/libwebsockets/win32port/zlib/
Ddeflate.c71 } 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 …]
/third_party/ffmpeg/doc/
Dsnow.txt108 leaf b block_state[4 + s_context]
111 intra b block_state[1 + left->intra + top->intra]
113 y_diff s block_state[32]
114 cb_diff s block_state[64]
115 cr_diff s block_state[96]
119 ref u block_state[128 + 1024 + 32*ref_context]
122 mvx_diff s block_state[128 + 32*(mx_context + 16*!!ref)]
123 mvy_diff s block_state[128 + 32*(my_context + 16*!!ref)]
/third_party/zlib/
Ddeflate.c71 } 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));
1041 block_state bstate;
1685 local block_state deflate_stored(s, flush) in deflate_stored()
1872 local block_state deflate_fast(s, flush) in deflate_fast()
[all …]
/third_party/node/deps/zlib/
Ddeflate.c80 } block_state; typedef
82 typedef block_state (*compress_func) OF((deflate_state *s, int flush)); typedef
88 local block_state deflate_stored OF((deflate_state *s, int flush));
89 local block_state deflate_fast OF((deflate_state *s, int flush));
91 local block_state deflate_slow OF((deflate_state *s, int flush));
93 local block_state deflate_rle OF((deflate_state *s, int flush));
94 local block_state deflate_huff OF((deflate_state *s, int flush));
1035 block_state bstate;
1691 local block_state deflate_stored(s, flush) in deflate_stored()
1872 local block_state deflate_fast(s, flush) in deflate_fast()
[all …]
/third_party/boost/tools/boost_install/test/iostreams/zlib-1.2.11/
Ddeflate.c71 } 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 …]
/third_party/skia/third_party/externals/zlib/
Ddeflate.c85 } 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 …]
/third_party/boost/libs/beast/test/extern/zlib-1.2.11/
Ddeflate.c71 } 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 …]
/third_party/flutter/skia/third_party/externals/zlib/
Ddeflate.c83 } block_state; typedef
85 typedef block_state (*compress_func) OF((deflate_state *s, int flush)); typedef
91 local block_state deflate_stored OF((deflate_state *s, int flush));
92 local block_state deflate_fast OF((deflate_state *s, int flush));
94 local block_state deflate_slow OF((deflate_state *s, int flush));
96 local block_state deflate_rle OF((deflate_state *s, int flush));
97 local block_state deflate_huff OF((deflate_state *s, int flush));
1084 block_state bstate;
1740 local block_state deflate_stored(s, flush) in deflate_stored()
1921 local block_state deflate_fast(s, flush) in deflate_fast()
[all …]
/third_party/skia/third_party/externals/zlib/patches/
D0006-fix-check_match.patch25 @@ -2060,7 +2060,13 @@ local block_state deflate_slow(s, flush)
D0001-simd.patch557 @@ -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)
/third_party/node/deps/zlib/patches/
D0001-simd.patch557 @@ -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)
/third_party/flutter/skia/third_party/externals/zlib/patches/
D0001-simd.patch557 @@ -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)