HomeSort by: relevance | last modified time | path
    Searched refs:WIN_INIT (Results 1 - 6 of 6) sorted by relevancy

  /src/common/dist/zlib/
deflate.h 302 #define WIN_INIT MAX_MATCH
deflate.c 334 /* If the WIN_INIT bytes after the end of the current data have never been
338 * time through here. WIN_INIT is set to MAX_MATCH since the longest match
346 /* Previous high water mark below current data -- zero WIN_INIT
350 if (init > WIN_INIT)
351 init = WIN_INIT;
355 else if (s->high_water < (ulg)curr + WIN_INIT) {
357 * plus WIN_INIT -- zero out to current data plus WIN_INIT, or up
360 init = (ulg)curr + WIN_INIT - s->high_water;
  /src/external/gpl3/binutils/dist/zlib/
deflate.h 300 #define WIN_INIT MAX_MATCH
deflate.c 332 /* If the WIN_INIT bytes after the end of the current data have never been
336 * time through here. WIN_INIT is set to MAX_MATCH since the longest match
344 /* Previous high water mark below current data -- zero WIN_INIT
348 if (init > WIN_INIT)
349 init = WIN_INIT;
353 else if (s->high_water < (ulg)curr + WIN_INIT) {
355 * plus WIN_INIT -- zero out to current data plus WIN_INIT, or up
358 init = (ulg)curr + WIN_INIT - s->high_water;
  /src/external/gpl3/binutils.old/dist/zlib/
deflate.h 289 #define WIN_INIT MAX_MATCH
deflate.c 1605 /* If the WIN_INIT bytes after the end of the current data have never been
1609 * time through here. WIN_INIT is set to MAX_MATCH since the longest match
1617 /* Previous high water mark below current data -- zero WIN_INIT
1621 if (init > WIN_INIT)
1622 init = WIN_INIT;
1626 else if (s->high_water < (ulg)curr + WIN_INIT) {
1628 * plus WIN_INIT -- zero out to current data plus WIN_INIT, or up
1631 init = (ulg)curr + WIN_INIT - s->high_water;

Completed in 40 milliseconds