Home | History | Annotate | Download | only in src

Lines Matching defs:hp

1718 x_load_hist(char **hp)
1723 if (hp == histptr + 1) {
1726 } else if (hp < history || hp > histptr) {
1731 sp = *hp;
1732 x_histp = hp;
1850 char **hp;
1853 for (hp = x_histp - (sameline ? 0 : 1); hp >= history; --hp) {
1854 i = x_match(*hp, pat);
1858 x_load_hist(hp);
1887 char **hp = x_histp + search_dir;
1890 while (histptr >= hp && hp >= history) {
1891 if (strncmp(xbuf, *hp, curs) == 0) {
1892 x_load_hist(hp);
1896 hp += search_dir;