Home
last modified time | relevance | path

Searched refs:strend (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/u-boot/lib/zlib/
H A Ddeflate.c1083 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1; local
1087 register Bytef *strend = s->window + s->strstart + MAX_MATCH; local
1143 scan < strend);
1150 len = (MAX_MATCH - 1) - (int)(strend-scan);
1151 scan = strend - (MAX_MATCH-1);
1177 scan < strend);
1181 len = MAX_MATCH - (int)(strend - scan);
1182 scan = strend - MAX_MATCH;
1217 register Bytef *strend = s->window + s->strstart + MAX_MATCH; local
1251 scan < strend);
[all …]
/OK3568_Linux_fs/kernel/lib/zlib_deflate/
H A Ddeflate.c581 register Byte *strend = s->window + s->strstart + MAX_MATCH - 1; in longest_match() local
585 register Byte *strend = s->window + s->strstart + MAX_MATCH; in longest_match() local
636 scan < strend); in longest_match()
643 len = (MAX_MATCH - 1) - (int)(strend-scan); in longest_match()
644 scan = strend - (MAX_MATCH-1); in longest_match()
670 scan < strend); in longest_match()
674 len = MAX_MATCH - (int)(strend - scan); in longest_match()
675 scan = strend - MAX_MATCH; in longest_match()