Home
last modified time | relevance | path

Searched refs:h_prev (Results 1 – 4 of 4) sorted by relevance

/freebsd-11-stable/contrib/less/
HDifile.c28 struct ifile *h_prev; member
77 p->h_prev = prev;
78 prev->h_next->h_prev = p;
96 p->h_next->h_prev = p->h_prev;
97 p->h_prev->h_next = p->h_next;
187 if (p->h_prev == &anchor)
189 return (ext_ifile(p->h_prev));
/freebsd-11-stable/lib/libedit/
HDhistory.c71 history_gfun_t h_prev; /* Get the previous element */ in TYPE() local
82 #define HPREV(h, ev) (*(h)->h_prev)((h)->h_ref, ev)
584 h->h_prev = history_def_prev; in TYPE()
691 nh->h_prev == NULL || nh->h_curr == NULL || nh->h_set == NULL || in history_set_fun()
700 h->h_prev = history_def_prev; in history_set_fun()
717 h->h_prev = nh->h_prev; in history_set_fun()
1066 hf.h_prev = va_arg(va, history_gfun_t); in FUNW()
/freebsd-11-stable/sys/dev/usb/controller/
HDuhci.c925 if (sqh->h_prev != NULL) { in _uhci_append_qh()
935 sqh->h_prev = last; in _uhci_append_qh()
984 if (sqh->h_prev) { in _uhci_remove_qh()
986 sqh->h_prev->h_next = sqh->h_next; in _uhci_remove_qh()
987 sqh->h_prev->qh_h_next = sqh->qh_h_next; in _uhci_remove_qh()
989 usb_pc_cpu_flush(sqh->h_prev->page_cache); in _uhci_remove_qh()
992 sqh->h_next->h_prev = sqh->h_prev; in _uhci_remove_qh()
995 last = ((last == sqh) ? sqh->h_prev : last); in _uhci_remove_qh()
997 sqh->h_prev = 0; in _uhci_remove_qh()
HDuhci.h146 struct uhci_qh *h_prev; member