Symbol: hc32toh
sys/dev/usb/controller/ehci.c
1109
status = hc32toh(sc, td->qtd_status);
sys/dev/usb/controller/ehci.c
1267
status = hc32toh(sc, td->sitd_status);
sys/dev/usb/controller/ehci.c
1273
status |= hc32toh(sc, td->sitd_status);
sys/dev/usb/controller/ehci.c
1329
status = hc32toh(sc, qh->qh_qtd.qtd_status);
sys/dev/usb/controller/ehci.c
1337
status = hc32toh(sc, td->qtd_status);
sys/dev/usb/controller/ehci.c
2049
status = hc32toh(sc, td->sitd_status);
sys/dev/usb/controller/ehci.c
2104
status = hc32toh(sc, td->itd_status[td_no]);
sys/dev/usb/controller/ehci.c
678
link = hc32toh(sc, link);
sys/dev/usb/controller/ehci.c
714
s = hc32toh(sc, qtd->qtd_status);
sys/dev/usb/controller/ehci.c
731
hc32toh(sc, qtd->qtd_buffer[s]));
sys/dev/usb/controller/ehci.c
735
hc32toh(sc, qtd->qtd_buffer_hi[s]));
sys/dev/usb/controller/ehci.c
745
printf("QTD(%p) at 0x%08x:\n", sqtd, hc32toh(sc, sqtd->qtd_self));
sys/dev/usb/controller/ehci.c
773
printf("QH(%p) at 0x%08x:\n", qh, hc32toh(sc, qh->qh_self) & ~0x1F);
sys/dev/usb/controller/ehci.c
777
endp = hc32toh(sc, qh->qh_endp);
sys/dev/usb/controller/ehci.c
786
endphub = hc32toh(sc, qh->qh_endphub);
sys/dev/usb/controller/ehci.c
803
printf("SITD(%p) at 0x%08x\n", sitd, hc32toh(sc, sitd->sitd_self) & ~0x1F);
sys/dev/usb/controller/ehci.c
804
printf(" next=0x%08x\n", hc32toh(sc, sitd->sitd_next));
sys/dev/usb/controller/ehci.c
806
hc32toh(sc, sitd->sitd_portaddr),
sys/dev/usb/controller/ehci.c
809
EHCI_SITD_GET_ADDR(hc32toh(sc, sitd->sitd_portaddr)),
sys/dev/usb/controller/ehci.c
810
EHCI_SITD_GET_ENDPT(hc32toh(sc, sitd->sitd_portaddr)),
sys/dev/usb/controller/ehci.c
811
EHCI_SITD_GET_PORT(hc32toh(sc, sitd->sitd_portaddr)),
sys/dev/usb/controller/ehci.c
812
EHCI_SITD_GET_HUBA(hc32toh(sc, sitd->sitd_portaddr)));
sys/dev/usb/controller/ehci.c
813
printf(" mask=0x%08x\n", hc32toh(sc, sitd->sitd_mask));
sys/dev/usb/controller/ehci.c
814
printf(" status=0x%08x <%s> len=0x%x\n", hc32toh(sc, sitd->sitd_status),
sys/dev/usb/controller/ehci.c
816
EHCI_SITD_GET_LEN(hc32toh(sc, sitd->sitd_status)));
sys/dev/usb/controller/ehci.c
818
hc32toh(sc, sitd->sitd_back),
sys/dev/usb/controller/ehci.c
819
hc32toh(sc, sitd->sitd_bp[0]),
sys/dev/usb/controller/ehci.c
820
hc32toh(sc, sitd->sitd_bp[1]),
sys/dev/usb/controller/ehci.c
821
hc32toh(sc, sitd->sitd_bp_hi[0]),
sys/dev/usb/controller/ehci.c
822
hc32toh(sc, sitd->sitd_bp_hi[1]));
sys/dev/usb/controller/ehci.c
829
printf("ITD(%p) at 0x%08x\n", itd, hc32toh(sc, itd->itd_self) & ~0x1F);
sys/dev/usb/controller/ehci.c
830
printf(" next=0x%08x\n", hc32toh(sc, itd->itd_next));
sys/dev/usb/controller/ehci.c
831
printf(" status[0]=0x%08x; <%s>\n", hc32toh(sc, itd->itd_status[0]),
sys/dev/usb/controller/ehci.c
833
printf(" status[1]=0x%08x; <%s>\n", hc32toh(sc, itd->itd_status[1]),
sys/dev/usb/controller/ehci.c
835
printf(" status[2]=0x%08x; <%s>\n", hc32toh(sc, itd->itd_status[2]),
sys/dev/usb/controller/ehci.c
837
printf(" status[3]=0x%08x; <%s>\n", hc32toh(sc, itd->itd_status[3]),
sys/dev/usb/controller/ehci.c
839
printf(" status[4]=0x%08x; <%s>\n", hc32toh(sc, itd->itd_status[4]),
sys/dev/usb/controller/ehci.c
841
printf(" status[5]=0x%08x; <%s>\n", hc32toh(sc, itd->itd_status[5]),
sys/dev/usb/controller/ehci.c
843
printf(" status[6]=0x%08x; <%s>\n", hc32toh(sc, itd->itd_status[6]),
sys/dev/usb/controller/ehci.c
845
printf(" status[7]=0x%08x; <%s>\n", hc32toh(sc, itd->itd_status[7]),
sys/dev/usb/controller/ehci.c
847
printf(" bp[0]=0x%08x\n", hc32toh(sc, itd->itd_bp[0]));
sys/dev/usb/controller/ehci.c
849
EHCI_ITD_GET_ADDR(hc32toh(sc, itd->itd_bp[0])),
sys/dev/usb/controller/ehci.c
850
EHCI_ITD_GET_ENDPT(hc32toh(sc, itd->itd_bp[0])));
sys/dev/usb/controller/ehci.c
851
printf(" bp[1]=0x%08x\n", hc32toh(sc, itd->itd_bp[1]));
sys/dev/usb/controller/ehci.c
853
(hc32toh(sc, itd->itd_bp[1]) & EHCI_ITD_SET_DIR_IN) ? "in" : "out",
sys/dev/usb/controller/ehci.c
854
EHCI_ITD_GET_MPL(hc32toh(sc, itd->itd_bp[1])));
sys/dev/usb/controller/ehci.c
856
hc32toh(sc, itd->itd_bp[2]),
sys/dev/usb/controller/ehci.c
857
hc32toh(sc, itd->itd_bp[3]),
sys/dev/usb/controller/ehci.c
858
hc32toh(sc, itd->itd_bp[4]),
sys/dev/usb/controller/ehci.c
859
hc32toh(sc, itd->itd_bp[5]),
sys/dev/usb/controller/ehci.c
860
hc32toh(sc, itd->itd_bp[6]));
sys/dev/usb/controller/ehci.c
863
hc32toh(sc, itd->itd_bp_hi[0]),
sys/dev/usb/controller/ehci.c
864
hc32toh(sc, itd->itd_bp_hi[1]),
sys/dev/usb/controller/ehci.c
865
hc32toh(sc, itd->itd_bp_hi[2]),
sys/dev/usb/controller/ehci.c
866
hc32toh(sc, itd->itd_bp_hi[3]),
sys/dev/usb/controller/ehci.c
867
hc32toh(sc, itd->itd_bp_hi[4]),
sys/dev/usb/controller/ehci.c
868
hc32toh(sc, itd->itd_bp_hi[5]),
sys/dev/usb/controller/ehci.c
869
hc32toh(sc, itd->itd_bp_hi[6]));