Home
last modified time | relevance | path

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

/freebsd/contrib/less/
H A Difile.c28 struct ifile *h_prev; member
71 p->h_prev = prev; in link_ifile()
72 prev->h_next->h_prev = p; in link_ifile()
88 p->h_next->h_prev = p->h_prev; in unlink_ifile()
89 p->h_prev->h_next = p->h_next; in unlink_ifile()
170 if (p->h_prev == &anchor) in prev_ifile()
172 return (ext_ifile(p->h_prev)); in prev_ifile()
/freebsd/contrib/libedit/
H A Dhistory.c105 history_gfun_t h_prev; /* Get the previous element */ in TYPE() local
116 #define HPREV(h, ev) (*(h)->h_prev)((h)->h_ref, ev)
621 h->h_prev = history_def_prev; in TYPE()
728 nh->h_prev == NULL || nh->h_curr == NULL || nh->h_set == NULL || in history_set_fun()
737 h->h_prev = history_def_prev; in history_set_fun()
754 h->h_prev = nh->h_prev; in history_set_fun()
1124 hf.h_prev = va_arg(va, history_gfun_t); in FUNW()
/freebsd/sys/dev/usb/controller/
H A Duhci.c920 if (sqh->h_prev != NULL) { in _uhci_append_qh()
930 sqh->h_prev = last; in _uhci_append_qh()
979 if (sqh->h_prev) { in _uhci_remove_qh()
980 sqh->h_prev->h_next = sqh->h_next; in _uhci_remove_qh()
981 sqh->h_prev->qh_h_next = sqh->qh_h_next; in _uhci_remove_qh()
983 usb_pc_cpu_flush(sqh->h_prev->page_cache); in _uhci_remove_qh()
986 sqh->h_next->h_prev = sqh->h_prev; in _uhci_remove_qh()
989 last = ((last == sqh) ? sqh->h_prev : last); in _uhci_remove_qh()
991 sqh->h_prev = 0; in _uhci_remove_qh()
H A Duhci.h147 struct uhci_qh *h_prev; member