/src/sys/dev/fdt/ |
fdt_mmc_pwrseq.c | 55 struct fdtbus_mmc_pwrseq *mps; local in function:fdtbus_register_mmc_pwrseq 57 mps = kmem_alloc(sizeof(*mps), KM_SLEEP); 58 mps->mps_dev = dev; 59 mps->mps_phandle = phandle; 60 mps->mps_funcs = funcs; 62 LIST_INSERT_HEAD(&fdtbus_mmc_pwrseqs, mps, mps_next); 70 struct fdtbus_mmc_pwrseq *mps; local in function:fdtbus_get_mmc_pwrseq 72 LIST_FOREACH(mps, &fdtbus_mmc_pwrseqs, mps_next) { 73 if (mps->mps_phandle == phandle [all...] |
/src/share/i18n/csmapper/ |
Makefile | 7 .SUFFIXES: .src .646 .mps 41 .src.mps:
|
/src/sys/arch/ia64/stand/ia64/efi/ |
main.c | 65 EFI_GUID mps = MPS_TABLE_GUID; variable in typeref:typename:EFI_GUID 298 if (!memcmp(guid, &mps, sizeof(EFI_GUID))) 299 printf("MPS Table");
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/engine/gr/ |
nouveau_nvkm_engine_gr_nv50.c | 295 int mps = 0; local in function:nv50_gr_mp_trap 322 mps++; 324 if (!mps && display) 326 "No MPs claiming errors?\n", tpid);
|
/src/sys/external/bsd/dwc2/ |
dwc2.c | 903 uint16_t mps = UE_GET_SIZE(UGETW(ed->wMaxPacketSize)); local in function:dwc2_device_start 932 "mps=%d\n", 935 epnum, dir == UT_READ ? "in" :"out", dev->ud_speed, mps); 953 " mps=%d dir %s\n", xfer, xfer->ux_nframes, xfer->ux_flags, addr, 954 epnum, mps, dir == UT_READ ? "in" :"out"); 967 " mps=%d dir %s\n", xfer, xfer->ux_length, xfer->ux_flags, addr, 968 epnum, mps, dir == UT_READ ? "in" :"out"); 985 mps); 992 /* XXXNH - % mps required? */ 993 if ((xfer->ux_flags & USBD_FORCE_SHORT_XFER) && (len % mps) == 0 [all...] |
/src/sys/dev/ic/ |
nvme.c | 214 printf("%s: mps %u (%u)\n", DEVNAME(sc), NVME_CC_MPS_R(r4), 253 nvme_enable(struct nvme_softc *sc, u_int mps) 297 SET(cc, NVME_CC_MPS(mps)); 358 u_int mps = PAGE_SHIFT; local in function:nvme_attach 388 if (NVME_CAP_MPSMAX(cap) < mps) 389 mps = NVME_CAP_MPSMAX(cap); 395 sc->sc_mps = 1 << mps; 414 if (nvme_enable(sc, mps) != 0) { 1575 nvme_identify(struct nvme_softc *sc, u_int mps) 1623 mdts = (1 << sc->sc_identify.mdts) * (1 << mps); [all...] |
/src/sys/dev/usb/ |
usb_subr.c | 592 u_int mps; local in function:usbd_fill_iface_data 596 mps = USB_2_MAX_CTRL_PACKET; 599 mps = USB_2_MAX_BULK_PACKET; 601 if (UGETW(ed->wMaxPacketSize) != mps) { 602 USETW(ed->wMaxPacketSize, mps); 1545 /* Re-establish the default pipe with the new MPS. */
|
ohci.c | 618 int mps = UGETW(xfer->ux_pipe->up_endpoint->ue_edesc->wMaxPacketSize); local in function:ohci_reset_std_chain 660 curlen -= curlen % mps; 697 alen % mps == 0) {
|
ehci.c | 3122 int mps = UGETW(xfer->ux_pipe->up_endpoint->ue_edesc->wMaxPacketSize); local in function:ehci_reset_sqtd_chain 3158 curlen -= curlen % mps; 3198 if (howmany(curlen, mps) & 1) { 3205 KASSERTMSG(len == 0, "xfer %p olen %d len %d mps %d ex_nsqtd %zu j %zu", 3206 xfer, length, len, mps, exfer->ex_nsqtd, j); 3210 length % mps == 0) { 3742 "MPS QH %" __PRIuBIT " pipe %d\n",
|
xhci.c | 2075 DPRINTFN(1, " mps %ju ival %ju", UGETW(ed->wMaxPacketSize), 2837 * Determine initial MaxPacketSize (mps) by speed. 2890 /* XXX using 64 as initial mps of ep0 in FS */ 2999 printf("%s: invalid mps 2^%u for SS ep0," 3014 DPRINTFN(1, "update mps of ep0 %ju", err, 0, 0, 0); 3030 DPRINTFN(1, " mps=%jd, len=%jd, noconf=%jd, speed=%jd", 3450 struct xhci_slot * const xs, u_int mps) 3457 XHCIHIST_CALLARGS("slot %ju mps %ju", xs->xs_idx, mps, 0, 0); 3465 cp[1] |= htole32(XHCI_EPCTX_1_MAXP_SIZE_SET(mps)); 3894 uint16_t mps = UGETW(ed->wMaxPacketSize); local in function:xhci_setup_maxburst 4603 const uint16_t mps = UE_GET_SIZE(MPS); local in function:xhci_device_isoc_enter [all...] |
/src/sys/external/bsd/dwc2/dist/ |
dwc2_hcd.h | 175 u16 mps; member in struct:dwc2_hcd_pipe_info 432 return pipe->mps;
|