Home | History | Annotate | Download | only in src

Lines Matching refs:high

260 c__next_word(Char *p, Char *high, int n, int (*wtest)(Int))
263 while ((p < high) && !(*wtest)(*p))
265 while ((p < high) && (*wtest)(*p))
268 if (p > high)
269 p = high;
278 cv_next_word(EditLine *el, Char *p, Char *high, int n, int (*wtest)(Int))
284 while ((p < high) && (*wtest)(*p) == test)
291 while ((p < high) && Isspace(*p))
296 if (p > high)
297 return high;
371 cv__endword(Char *p, Char *high, int n, int (*wtest)(Int))
378 while ((p < high) && Isspace(*p))
382 while ((p < high) && (*wtest)(*p) == test)