Lines Matching defs:linep
55 const char *limit, *linep, *keyp;
56 linep = line;
60 while (linep < limit && isspace(*linep))
61 linep++;
63 while (linep < limit && !isspace(*linep))
64 linep++;
66 while (linep < limit && isspace(*linep))
67 linep++;
68 if (linep == limit)
73 while (*keyp != '\0' && linep < limit && *keyp == *linep) {
75 linep++;
77 return (*keyp == '\0' && linep == limit);
112 const char *limit, *linep;
117 linep = line;
121 while (linep < limit && isspace(*linep))
122 linep++;
126 while (linep < limit && isxdigit(*linep)) {
127 n = 16 * n + DIGIT(*linep);
128 linep++;
130 if (*linep != ':' && i < 5) {
132 } else if (*linep == ':' && i == 5) {
135 linep++;