Lines Matching refs:limit
53 const char *limit, *linep, *keyp; in check_host() local
55 limit = line + linelen; in check_host()
58 while (linep < limit && isspace(*linep)) in check_host()
61 while (linep < limit && !isspace(*linep)) in check_host()
64 while (linep < limit && isspace(*linep)) in check_host()
66 if (linep == limit) in check_host()
71 while (*keyp != '\0' && linep < limit && *keyp == *linep) { in check_host()
75 return (*keyp == '\0' && linep == limit); in check_host()
110 const char *limit, *linep; in check_ether() local
116 limit = line + linelen; in check_ether()
119 while (linep < limit && isspace(*linep)) in check_ether()
124 while (linep < limit && isxdigit(*linep)) { in check_ether()