Lines Matching refs:aux
3723 char_u *aux; in find_pattern_in_path() local
3728 aux = p = startp; in find_pattern_in_path()
3737 i = (int)(p - aux); in find_pattern_in_path()
3742 STRNCPY(IObuff, aux, i); in find_pattern_in_path()
3760 already = aux = p = skipwhite(line); in find_pattern_in_path()
3763 if (p > aux) in find_pattern_in_path()
3765 if (*aux != ')' && IObuff[i-1] != TAB) in find_pattern_in_path()
3778 if (p - aux >= IOSIZE - i) in find_pattern_in_path()
3779 p = aux + IOSIZE - i - 1; in find_pattern_in_path()
3780 STRNCPY(IObuff + i, aux, p - aux); in find_pattern_in_path()
3781 i += (int)(p - aux); in find_pattern_in_path()
3785 aux = IObuff; in find_pattern_in_path()
3791 add_r = ins_compl_add_infercase(aux, i, p_ic, in find_pattern_in_path()