Home
last modified time | relevance | path

Searched refs:WIN_INIT (Results 1 – 17 of 17) sorted by relevance

/external/zlib/
Dfill_window_sse.c160 if (init > WIN_INIT) in fill_window_sse()
161 init = WIN_INIT; in fill_window_sse()
165 else if (s->high_water < (ulg)curr + WIN_INIT) { in fill_window_sse()
170 init = (ulg)curr + WIN_INIT - s->high_water; in fill_window_sse()
Ddeflate.h289 #define WIN_INIT MAX_MATCH macro
Ddeflate.c1655 if (init > WIN_INIT)
1656 init = WIN_INIT;
1660 else if (s->high_water < (ulg)curr + WIN_INIT) {
1665 init = (ulg)curr + WIN_INIT - s->high_water;
/external/angle/third_party/zlib/
Dfill_window_sse.c160 if (init > WIN_INIT) in fill_window_sse()
161 init = WIN_INIT; in fill_window_sse()
165 else if (s->high_water < (ulg)curr + WIN_INIT) { in fill_window_sse()
170 init = (ulg)curr + WIN_INIT - s->high_water; in fill_window_sse()
Ddeflate.h289 #define WIN_INIT MAX_MATCH macro
Ddeflate.c1655 if (init > WIN_INIT)
1656 init = WIN_INIT;
1660 else if (s->high_water < (ulg)curr + WIN_INIT) {
1665 init = (ulg)curr + WIN_INIT - s->high_water;
/external/zlib/patches/
D0001-simd.patch1003 + /* If the WIN_INIT bytes after the end of the current data have never been
1007 + * time through here. WIN_INIT is set to MAX_MATCH since the longest match
1015 + /* Previous high water mark below current data -- zero WIN_INIT
1019 + if (init > WIN_INIT)
1020 + init = WIN_INIT;
1024 + else if (s->high_water < (ulg)curr + WIN_INIT) {
1026 + * plus WIN_INIT -- zero out to current data plus WIN_INIT, or up
1029 + init = (ulg)curr + WIN_INIT - s->high_water;
/external/angle/third_party/zlib/patches/
D0001-simd.patch1003 + /* If the WIN_INIT bytes after the end of the current data have never been
1007 + * time through here. WIN_INIT is set to MAX_MATCH since the longest match
1015 + /* Previous high water mark below current data -- zero WIN_INIT
1019 + if (init > WIN_INIT)
1020 + init = WIN_INIT;
1024 + else if (s->high_water < (ulg)curr + WIN_INIT) {
1026 + * plus WIN_INIT -- zero out to current data plus WIN_INIT, or up
1029 + init = (ulg)curr + WIN_INIT - s->high_water;
/external/libwebsockets/win32port/zlib/
Ddeflate.h288 #define WIN_INIT MAX_MATCH macro
Ddeflate.c1425 if (init > WIN_INIT)
1426 init = WIN_INIT;
1430 else if (s->high_water < (ulg)curr + WIN_INIT) {
1435 init = (ulg)curr + WIN_INIT - s->high_water;
/external/rust/crates/libz-sys/src/zlib/
Ddeflate.h294 #define WIN_INIT MAX_MATCH macro
Ddeflate.c1579 if (init > WIN_INIT)
1580 init = WIN_INIT;
1584 else if (s->high_water < (ulg)curr + WIN_INIT) {
1589 init = (ulg)curr + WIN_INIT - s->high_water;
/external/python/cpython2/Modules/zlib/
Ddeflate.h294 #define WIN_INIT MAX_MATCH macro
Ddeflate.c1579 if (init > WIN_INIT)
1580 init = WIN_INIT;
1584 else if (s->high_water < (ulg)curr + WIN_INIT) {
1589 init = (ulg)curr + WIN_INIT - s->high_water;
/external/rust/crates/libz-sys/src/zlib-ng/
Ddeflate.h375 #define WIN_INIT MAX_MATCH macro
Ddeflate.c1327 if (init > WIN_INIT) in fill_window()
1328 init = WIN_INIT; in fill_window()
1331 } else if (s->high_water < curr + WIN_INIT) { in fill_window()
1336 init = curr + WIN_INIT - s->high_water; in fill_window()
/external/kernel-headers/original/uapi/linux/
Dhdreg.h195 #define WIN_INIT 0x60 macro