Home
last modified time | relevance | path

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

/freebsd/sys/contrib/zlib/
H A Ddeflate.c1367 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1; in longest_match() local
1371 register Bytef *strend = s->window + s->strstart + MAX_MATCH; in longest_match() local
1428 scan < strend); in longest_match()
1436 len = (MAX_MATCH - 1) - (int)(strend - scan); in longest_match()
1437 scan = strend - (MAX_MATCH-1); in longest_match()
1463 scan < strend); in longest_match()
1468 len = MAX_MATCH - (int)(strend - scan); in longest_match()
1469 scan = strend - MAX_MATCH; in longest_match()
1500 register Bytef *strend = s->window + s->strstart + MAX_MATCH; in longest_match() local
1535 scan < strend); in longest_match()
[all …]
/freebsd/usr.bin/sort/
H A Dfile.c664 unsigned char *strend; in file_reader_readline() local
668 strend = memchr(fr->mmapptr, fr->elsymb, sz); in file_reader_readline()
670 if (strend == NULL) { in file_reader_readline()
674 ret = bwscsbdup(fr->mmapptr, strend - in file_reader_readline()
676 fr->mmapptr = strend + 1; in file_reader_readline()
/freebsd/contrib/tcsh/
H A Dglob.c225 if (*fn != 0 && strend(fn)[-1] == '/' && !S_ISDIR(sb->st_mode)) in Lstat()
241 if (*fn != 0 && strend(fn)[-1] == '/' && !S_ISDIR(sb->st_mode)) in Stat()
H A Dsh.decls.h290 extern char *strend (const char *);
H A Dsh.misc.c447 strend(const char *cp) in strend() function
H A Dsh.h1121 #define Strend(a) strend(a)