Home
last modified time | relevance | path

Searched refs:page_info (Results 1 – 7 of 7) sorted by relevance

/freebsd-9-stable/usr.bin/makewhatis/
Dmakewhatis.c57 struct page_info { struct
133 free_page_info(struct page_info *info) in free_page_info()
146 static struct page_info *
149 struct page_info *info; in new_page_info()
154 info = (struct page_info *) malloc(sizeof(struct page_info)); in new_page_info()
694 process_page(struct page_info *page, char *section_dir) in process_page()
817 const struct page_info *p1 = *(struct page_info * const *) a; in pagesort()
818 const struct page_info *p2 = *(struct page_info * const *) b; in pagesort()
832 struct page_info **pages; in process_section()
852 pages = (struct page_info **) calloc(nentries, sizeof(struct page_info *)); in process_section()
[all …]
/freebsd-9-stable/sys/mips/cavium/usb/
Doctusb.c1727 struct usb_page_search page_info; in octusb_xfer_setup() local
1764 usbd_get_page(pc, 0, &page_info); in octusb_xfer_setup()
1766 qh = page_info.buffer; in octusb_xfer_setup()
1809 usbd_get_page(pc, 0, &page_info); in octusb_xfer_setup()
1811 qh->fixup_phys = page_info.physaddr; in octusb_xfer_setup()
1813 qh->fixup_buf = page_info.buffer; in octusb_xfer_setup()
1831 usbd_get_page(pc + n, 0, &page_info); in octusb_xfer_setup()
1833 td = page_info.buffer; in octusb_xfer_setup()
/freebsd-9-stable/sys/dev/usb/controller/
Dohci.c2382 struct usb_page_search page_info; in ohci_xfer_setup() local
2469 usbd_get_page(pc + n, 0, &page_info); in ohci_xfer_setup()
2471 td = page_info.buffer; in ohci_xfer_setup()
2474 td->td_self = htole32(page_info.physaddr); in ohci_xfer_setup()
2493 usbd_get_page(pc + n, 0, &page_info); in ohci_xfer_setup()
2495 itd = page_info.buffer; in ohci_xfer_setup()
2498 itd->itd_self = htole32(page_info.physaddr); in ohci_xfer_setup()
2521 usbd_get_page(pc + n, 0, &page_info); in ohci_xfer_setup()
2523 ed = page_info.buffer; in ohci_xfer_setup()
2526 ed->ed_self = htole32(page_info.physaddr); in ohci_xfer_setup()
Dehci.c3482 struct usb_page_search page_info; in ehci_xfer_setup() local
3633 usbd_get_page(pc + n, 0, &page_info); in ehci_xfer_setup()
3635 td = page_info.buffer; in ehci_xfer_setup()
3638 td->itd_self = htohc32(sc, page_info.physaddr | EHCI_LINK_ITD); in ehci_xfer_setup()
3657 usbd_get_page(pc + n, 0, &page_info); in ehci_xfer_setup()
3659 td = page_info.buffer; in ehci_xfer_setup()
3662 td->sitd_self = htohc32(sc, page_info.physaddr | EHCI_LINK_SITD); in ehci_xfer_setup()
3681 usbd_get_page(pc + n, 0, &page_info); in ehci_xfer_setup()
3683 qtd = page_info.buffer; in ehci_xfer_setup()
3686 qtd->qtd_self = htohc32(sc, page_info.physaddr); in ehci_xfer_setup()
[all …]
Duhci.c2833 struct usb_page_search page_info; in uhci_xfer_setup() local
2966 usbd_get_page(pc + n, 0, &page_info); in uhci_xfer_setup()
2968 td = page_info.buffer; in uhci_xfer_setup()
2975 td->td_self = htole32(page_info.physaddr | in uhci_xfer_setup()
2978 td->td_self = htole32(page_info.physaddr | in uhci_xfer_setup()
3004 usbd_get_page(pc + n, 0, &page_info); in uhci_xfer_setup()
3006 qh = page_info.buffer; in uhci_xfer_setup()
3009 qh->qh_self = htole32(page_info.physaddr | UHCI_PTR_QH); in uhci_xfer_setup()
Dxhci.c3636 struct usb_page_search page_info; in xhci_xfer_setup() local
3714 usbd_get_page(pc + n, 0, &page_info); in xhci_xfer_setup()
3716 td = page_info.buffer; in xhci_xfer_setup()
3719 td->td_self = page_info.physaddr; in xhci_xfer_setup()
/freebsd-9-stable/sys/dev/usb/
Dusb_transfer.c2058 struct usb_page_search page_info; in usbd_xfer_get_frame_buffer() local
2062 usbd_get_page(&xfer->frbuffers[frindex], 0, &page_info); in usbd_xfer_get_frame_buffer()
2063 return (page_info.buffer); in usbd_xfer_get_frame_buffer()