Lines Matching refs:limit
55 const char *limit, *linep, *keyp;
57 limit = line + linelen;
60 while (linep < limit && isspace(*linep))
63 while (linep < limit && !isspace(*linep))
66 while (linep < limit && isspace(*linep))
68 if (linep == limit)
73 while (*keyp != '\0' && linep < limit && *keyp == *linep) {
77 return (*keyp == '\0' && linep == limit);
112 const char *limit, *linep;
118 limit = line + linelen;
121 while (linep < limit && isspace(*linep))
126 while (linep < limit && isxdigit(*linep)) {