Searched refs:kobj_getc (Results 1 – 4 of 4) sorted by relevance
173 while ((ch = kobj_getc(file)) == ' ' || ch == '\t') in mf_lex()178 while ((ch = kobj_getc(file)) != '\n' && ch != '\r' && in mf_lex()203 while (!badquote && (ch = kobj_getc(file)) != '"') { in mf_lex()233 *cp++ = (char)(ch = kobj_getc(file)); in mf_lex()
216 while ((ch = kobj_getc(file)) == ' ' || ch == '\t') in kobj_lex()252 while ((ch = kobj_getc(file)) == ' ' || in kobj_lex()271 while (!badquote && (ch = kobj_getc(file)) != '"') { in kobj_lex()289 ch = (char)kobj_getc(file); in kobj_lex()299 ch = (char)kobj_getc(file); in kobj_lex()336 *cp++ = (char)(ch = kobj_getc(file)); in kobj_lex()349 *cp++ = (char)(ch = kobj_getc(file)); in kobj_lex()355 if ((ch = kobj_getc(file)) == 'x') { in kobj_lex()361 ch = kobj_getc(file); in kobj_lex()368 ch = kobj_getc(file); in kobj_lex()[all …]
149 #define kobj_getc(p) (--(p)->_cnt >= 0 ? ((int)*(p)->_ptr++):kobj_filbuf(p)) macro
4005 return (kobj_getc(f)); in kobj_filbuf()