Home
last modified time | relevance | path

Searched refs:ep (Results 1 – 23 of 23) sorted by relevance

/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/include/
H A DdrvUSB.h654 #define usb_endpoint_running(dev, ep, out) ((dev)->halted[out] &= ~(1 << (ep))) argument
655 #define usb_endpoint_halted(dev, ep, out) ((dev)->halted[out] & (1 << (ep))) argument
672 #define usb_gettoggle(dev, ep, out) (((dev)->toggle[out] >> (ep)) & 1) argument
673 #define usb_dotoggle(dev, ep, out) ((dev)->toggle[out] ^= (1 << (ep))) argument
674 #define usb_settoggle(dev, ep, out, bit) ((dev)->toggle[out] = ((dev)->toggle[out] & ~(1 << (ep))) … argument
/utopia/UTPA2-700.0.x/modules/gpd/drv/gpd/
H A Ddgif_lib.c1550 ExtensionBlock *ep; local
1562 ep = &New->ExtensionBlocks[New->ExtensionBlockCount++];
1564 if ((ep->Bytes = (char *)malloc(ep->ByteCount = Len)) == NULL)
1568 memcpy(ep->Bytes, ExtData, Len);
1569 ep->Function = New->Function;
1577 ExtensionBlock *ep; local
1579 for (ep = Image->ExtensionBlocks;
1580 ep < Image->ExtensionBlocks + Image->ExtensionBlockCount;
1581 ep++)
1582 (void) free((char *)ep->Bytes);
/utopia/UTPA2-700.0.x/projects/build/scripts/kconfig/
H A Dmenu.c267 struct expr *parentdep, *basedep, *dep, *dep2, **ep; in menu_finalize() local
390 for (ep = &prop->expr; *ep; ep = &(*ep)->left.expr) in menu_finalize()
392 *ep = expr_alloc_one(E_LIST, NULL); in menu_finalize()
393 (*ep)->right.sym = menu->sym; in menu_finalize()
H A Dexpr.c853 void expr_extract_eq(enum expr_type type, struct expr **ep, struct expr **ep1, struct expr **ep2) in expr_extract_eq() argument
858 expr_extract_eq(type, ep, &e1->left.expr, &e2); in expr_extract_eq()
859 expr_extract_eq(type, ep, &e1->right.expr, &e2); in expr_extract_eq()
863 expr_extract_eq(type, ep, ep1, &e2->left.expr); in expr_extract_eq()
864 expr_extract_eq(type, ep, ep1, &e2->right.expr); in expr_extract_eq()
868 *ep = *ep ? expr_alloc_two(type, *ep, e1) : e1; in expr_extract_eq()
H A Dexpr.h204 void expr_extract_eq(enum expr_type type, struct expr **ep, struct expr **ep1, struct expr **ep2);
/utopia/UTPA2-700.0.x/projects/build/scripts/
H A Dunifdef.c828 char *ep; in eval_unary() local
855 *valp = strtol(cp, &ep, 0); in eval_unary()
856 if (ep == cp) in eval_unary()
892 *valp = strtol(value[sym], &ep, 0); in eval_unary()
893 if (*ep != '\0' || ep == value[sym]) in eval_unary()
/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/usbhost/
H A DdrvEhciHcd.c4278 clear_toggle (struct usb_device *udev, int ep, int is_out, struct ehci_qh *qh) in clear_toggle() argument
4281 udev->devnum, ep, is_out ? "out" : "in"); in clear_toggle()
4332 usb_settoggle (udev, ep, is_out, 1); in clear_toggle()
5640 qtd, dev ? dev->ep [epnum] : (void *)~0); in submit_async()
5691 qh = qh_append_tds (ehci, urb, qtd_list, epnum, &dev->ep [epnum]); in submit_async()
8923 ehci_endpoint_disable (struct usb_hcd *hcd, struct hcd_dev *dev, int ep) in ehci_endpoint_disable() argument
8933 epnum = ep & USB_ENDPOINT_NUMBER_MASK; in ehci_endpoint_disable()
8934 if (epnum != 0 && (ep & USB_DIR_IN)) in ehci_endpoint_disable()
8987 qh = (struct ehci_qh *) dev->ep [epnum]; in ehci_endpoint_disable()
9115 dev->ep [epnum] = 0; in ehci_endpoint_disable()
[all …]
H A DdrvHCD.h202 void *ep[32]; member
565 #define usb_endpoint_halt(dev, ep, out) ((dev)->halted[out] |= (1 << (ep))) argument
H A DdrvEHCI_SCHD.cxx554 qh1 = qh_append_tds (ehci, urb, &empty, epnum1, &dev->ep [epnum1]); in intr_submit()
566 qh1 = qh_append_tds (ehci, urb, qtd_list, epnum1, &dev->ep [epnum1]); in intr_submit()
H A DdrvEhciHcd_2.c127 extern void ehci_endpoint_disable (struct usb_hcd *hcd, struct hcd_dev *dev, int ep);
H A DdrvHub.c4859 extern void ehci_endpoint_disable (struct usb_hcd *hcd, struct hcd_dev *dev, int ep);
/utopia/UTPA2-700.0.x/modules/usb/drv/usb_ecos/newhost/
H A DdrvBulktran.c469 int regval,ep; in ms_usb_msc_clear_halt() local
471 ep = usb_pipeendpoint(pipe); in ms_usb_msc_clear_halt()
473 ep |= USB_DIR_IN; in ms_usb_msc_clear_halt()
476 USB_REQ_CLEAR_FEATURE, USB_RECIP_ENDPOINT, 0, ep, NULL, 0, 3*HZ); in ms_usb_msc_clear_halt()
H A DdrvEHCI_SCHD.cxx629 pQh1 = ms_qh_append_tds (pEhci, pUrb, &stEmpty, epnum1, &dev->ep [epnum1]); in ms_intr_submit()
641 pQh1 = ms_qh_append_tds (pEhci, pUrb, qtd_list, epnum1, &dev->ep [epnum1]); in ms_intr_submit()
H A DdrvUsbd.h160 void *ep[32]; member
H A DdrvEhciHcd.c1899 pQh = ms_qh_append_tds (pEhci, pUrb, qtd_list, iEpNum, &pDev->ep [iEpNum]); in ms_submit_async()
3053 pQh = (struct ehci_qh *) pDev->ep[iEpnum]; in ms_ehci_disable_ep()
3097 pDev->ep[iEpnum] = 0; in ms_ehci_disable_ep()
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/rpcsvc/
H A Dnis.x255 endpoint ep; member
278 endpoint ep; member
H A Dnis_object.x144 endpoint ep<>; /* Universal addr(s) for server */ member
H A Dnis.h139 } ep; member
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/linux/
H A Dusbdevice_fs.h52 unsigned int ep; member
/utopia/UTPA2-700.0.x/modules/pq/hal/mooney/pq/include/
H A DSub.bin380 …0��0��0w��",s� ,qxE $ox� ,kx $ipE gp� ep� cp _h� …
523 …0��0��0w��",s� ,qxE $ox� ,kx $ipE gp� ep� cp _h� …
H A DMain.bin366 …0��0��0w��",s� ,qxE $ox� ,kx $ipE gp� ep� cp _h� …
509 …0��0��0w��",s� ,qxE $ox� ,kx $ipE gp� ep� cp _h� …
/utopia/UTPA2-700.0.x/modules/pq/hal/maserati/pq/include/
H A DSub.bin650 …xE $ox� $ox� ,mx� $kx $kx $ipE ipE gp� ep� ep� cp cp…
937 …xE $ox� $ox� ,mx� $kx $kx $ipE ipE gp� ep� ep� cp cp…
/utopia/UTPA2-700.0.x/modules/pq/hal/M7821/pq/include/
H A DSub.bin650 …xE $ox� $ox� ,mx� $kx $kx $ipE ipE gp� ep� ep� cp cp…
937 …xE $ox� $ox� ,mx� $kx $kx $ipE ipE gp� ep� ep� cp cp…