Home
last modified time | relevance | path

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

/openbmc/linux/lib/zlib_deflate/
H A Ddeflate.c588 register Byte *strend = s->window + s->strstart + MAX_MATCH - 1; in longest_match() local
592 register Byte *strend = s->window + s->strstart + MAX_MATCH; in longest_match() local
643 scan < strend); in longest_match()
650 len = (MAX_MATCH - 1) - (int)(strend-scan); in longest_match()
651 scan = strend - (MAX_MATCH-1); in longest_match()
677 scan < strend); in longest_match()
681 len = MAX_MATCH - (int)(strend - scan); in longest_match()
682 scan = strend - MAX_MATCH; in longest_match()
/openbmc/u-boot/lib/zlib/
H A Ddeflate.c1087 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;
1251 scan < strend);
1255 len = MAX_MATCH - (int)(strend - scan);
1766 strend = s->window + s->strstart + MAX_MATCH;
[all …]
/openbmc/linux/tools/testing/selftests/alsa/
H A Dmixer-test.c420 static bool strend(const char *haystack, const char *needle) in strend() function
438 if (strend(ctl->name, " Switch")) { in test_ctl_name()
449 if (!strend(ctl->name, " Switch")) { in test_ctl_name()