Searched refs:td (Results 1 - 25 of 58) sorted by relevance

123

/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/usb/host/
H A Dusb-uhci-debug.h27 static void uhci_show_td (puhci_desc_t td)
31 switch (td->hw.td.info & 0xff) {
47 td, td->dma_addr,
48 td->hw.td.info >> 21,
49 ((td->hw.td.info >> 19) & 1),
50 (td
81 uhci_show_td_queue(puhci_desc_t td) argument
[all...]
H A Dsl811.c675 struct sl811_td *td; local
685 td = list_entry(tmp, struct sl811_td, td_list);
687 kfree(td);
697 * This function calculate the bus time need by this td.
700 static void sl811_calc_td_time(struct sl811_td *td) argument
704 int len = td->len;
705 struct sl811_hc *hc = td->urb->dev->bus->hcpriv;
710 if (td->ctrl & SL811_USB_CTRL_PREAMBLE)
718 td->bustime = time;
724 int low_speed = usb_pipeslow(td
764 struct sl811_td *td; local
783 sl811_fill_td(struct sl811_td *td, __u8 ctrl, __u8 addr, __u8 len, __u8 pidep, __u8 dev, __u8 *buf) argument
798 sl811_reset_td(struct sl811_td *td) argument
808 sl811_print_td(int level, struct sl811_td *td) argument
827 struct sl811_td *td = NULL; local
895 struct sl811_td *td = NULL; local
929 struct sl811_td *td; local
987 struct sl811_td *td = NULL; local
1022 struct sl811_td *td = urbp->cur_td; local
1046 struct sl811_td *td; local
1105 struct sl811_td *td = NULL; local
1209 struct sl811_td *td; local
1299 struct sl811_td *td = NULL; local
1384 struct sl811_td *td; local
1421 struct sl811_td *td = NULL; local
2087 sl811_trans_cur_td(struct sl811_hc *hc, struct sl811_td *td) argument
2102 sl811_parse_cur_td(struct sl811_hc *hc, struct sl811_td *td) argument
2168 struct sl811_td *td = urbp->cur_td; local
[all...]
H A Duhci-debug.h36 static int inline uhci_is_skeleton_td(struct uhci *uhci, struct uhci_td *td) argument
41 if (td == uhci->skeltd[i])
58 static int uhci_show_td(struct uhci_td *td, char *buf, int len, int space) argument
67 out += sprintf(out, "%*s[%p] link (%08x) ", space, "", td, td->link);
69 ((td->status >> 27) & 3),
70 (td->status & TD_CTRL_SPD) ? "SPD " : "",
71 (td->status & TD_CTRL_LS) ? "LS " : "",
72 (td->status & TD_CTRL_IOC) ? "IOC " : "",
73 (td
190 struct uhci_td *td; local
228 struct uhci_td *td = list_entry(tmp, struct uhci_td, list); local
315 struct uhci_td *td; local
[all...]
H A Dusb-ohci.h103 struct td { struct
113 struct td * next_dl_td;
120 typedef struct td td_t;
340 td_t * td[0]; // list pointer to all corresponding TDs associated with this request member in struct:__anon2781
432 /* td */
475 static inline struct td *
478 return (struct td *) dma_to_ed_td(&(hc->td_hash[TD_HASH_FUNC(td_dma)]),
513 hash_add_td (struct ohci * hc, struct td * td) argument
515 return hash_add_ed_td (&(hc->td_hash[TD_HASH_FUNC(td
553 hash_free_td(struct ohci * hc, struct td * td) argument
595 struct td *td; local
611 td_free(struct ohci *hc, struct td *td) argument
[all...]
H A Duhci.c126 * Technically, updating td->status here is a race, but it's not really a
165 struct uhci_td *td; local
167 td = pci_pool_alloc(uhci->td_pool, GFP_DMA | GFP_ATOMIC, &dma_handle);
168 if (!td)
171 td->dma_handle = dma_handle;
173 td->link = UHCI_PTR_TERM;
174 td->buffer = 0;
176 td->frame = -1;
177 td->dev = dev;
179 INIT_LIST_HEAD(&td
187 uhci_fill_td(struct uhci_td *td, __u32 status, __u32 info, __u32 buffer) argument
195 uhci_insert_td(struct uhci *uhci, struct uhci_td *skeltd, struct uhci_td *td) argument
220 uhci_insert_td_frame_list(struct uhci *uhci, struct uhci_td *td, unsigned framenum) argument
252 uhci_remove_td(struct uhci *uhci, struct uhci_td *td) argument
296 struct uhci_td *td, *ptd; local
328 uhci_free_td(struct uhci *uhci, struct uhci_td *td) argument
487 struct uhci_td *td = list_entry(tmp, struct uhci_td, list); local
680 uhci_add_td_to_urb(struct urb *urb, struct uhci_td *td) argument
692 uhci_remove_td_from_urb(struct uhci_td *td) argument
731 struct uhci_td *td = list_entry(tmp, struct uhci_td, list); local
828 struct uhci_td *td; local
936 struct uhci_td *td; local
1056 struct uhci_td *td = list_entry(tmp, struct uhci_td, list); local
1090 struct uhci_td *td; local
1124 struct uhci_td *td; local
1188 struct uhci_td *td; local
1215 struct uhci_td *td; local
1384 struct uhci_td *td; local
1432 struct uhci_td *td = list_entry(tmp, struct uhci_td, list); local
1714 struct uhci_td *td = list_entry(tmp, struct uhci_td, list); local
1847 struct uhci_td *td = list_entry(tmp, struct uhci_td, list); local
2849 struct uhci_td *td; local
[all...]
H A Dusb-ohci.c22 * 2001/03/24 td/ed hashing to remove bus_to_virt (Steve Longerbeam);
24 * 2001/03/21 td and dev/ed allocation uses new pci_pool API (db)
193 struct td *td; local
197 /* ISOC, BULK, INTR data buffer starts at td 0
198 * CTRL setup starts at td 0 */
199 td = urb_priv->td [0];
201 len = td->urb->transfer_buffer_length,
202 dir = usb_pipeout (td
1259 td_t * td; local
1358 volatile td_t * td, * td_pt; local
1516 dl_transfer_length(td_t * td) argument
1630 td_t * td = NULL, * td_next = NULL, * tdHeadP = NULL, * tdTailP; local
[all...]
H A Dusb-uhci.c315 // append a qh to td.link physically, the SW linkage is not affected
316 _static void append_qh(uhci_t *s, uhci_desc_t *td, uhci_desc_t* qh, int flags) argument
322 set_td_link(td, qh->dma_addr | (flags & UHCI_PTR_DEPTH) | UHCI_PTR_QH);
328 /* insert td at last position in td-list of qh (vertical) */
354 /* insert new_td after td (horizontal) */
355 _static int insert_td_horizontal (uhci_t *s, uhci_desc_t *td, uhci_desc_t* new) argument
362 next = list_entry (td->horizontal.next, uhci_desc_t, horizontal);
363 list_add (&new->horizontal, &td->horizontal);
364 new->hw.td
495 uhci_desc_t *td; local
512 clean_td_chain(uhci_t *s, uhci_desc_t *td) argument
529 fill_td(uhci_desc_t *td, int status, int info, __u32 buffer) argument
540 uhci_desc_t *td; local
607 uhci_desc_t *qh, *td; local
695 uhci_desc_t *td; local
747 uhci_desc_t *qh, *td; local
866 uhci_desc_t *qh, *td, *nqh=NULL, *bqh=NULL, *first_td=NULL; local
998 uhci_desc_t *td; local
1009 uhci_desc_t *td; local
1485 uhci_desc_t *td; local
1549 uhci_desc_t *td, **tdm; local
2333 uhci_desc_t *td; local
[all...]
H A Dusb-uhci.h145 uhci_td_t td; member in union:__anon2785::__anon2786
242 #define is_td_active(desc) (desc->hw.td.status & cpu_to_le32(TD_CTRL_ACTIVE))
246 #define set_td_link(desc,val) (desc)->hw.td.link=cpu_to_le32(val)
247 #define set_td_ioc(desc) (desc)->hw.td.status |= cpu_to_le32(TD_CTRL_IOC)
248 #define clr_td_ioc(desc) (desc)->hw.td.status &= cpu_to_le32(~TD_CTRL_IOC)
/asus-wl-520gu-7.0.1.45/src/router/LPRng/DOCS/
H A Dupdateheader5 <td width=25%>
9 </td>
10 <td width=50%></td><td width=25% >
14 </td></tr></table>
/asus-wl-520gu-7.0.1.45/src/router/LPRng/PrintingCookbook/source/
H A Dupdateheader5 <td width=25%>
9 </td>
10 <td width=50%></td><td width=25% >
14 </td></tr></table>
/asus-wl-520gu-7.0.1.45/src/router/www/asus/web_asus_en/
H A DUploading.asp29 <td width="666" height="125">
33 <td bgcolor="#FF0000" height="50" width="652"><b><font size="5" face="Arial" color="#FFFFFF"><#SET_ok_title#></font></b></td>
36 <td width="652" height="25" bgcolor="#FFFFFF" colspan="2"><font face="Arial"><#SET_ok_desc#></font></td>
39 <td width="652" height="25" bgcolor="#FFFFFF" colspan="2"></td>
42 <td width="652" height="25" bgcolor="#FFFFFF" colspan="2"><font face="Arial">
43 <font color="#FF0000"><b><#SET_note#></b></font></font></td>
47 </td>
[all...]
/asus-wl-520gu-7.0.1.45/src/router/misc/
H A Dstats.pl92 [th('Board type').td($query->param('boardtype')),
93 th('Board number').td($query->param('boardnum')),
94 th('CPU clock').td($query->param('clkfreq')),
95 th('OS name').td($query->param('os_name')),
96 th('OS version').td($query->param('os_version')),
97 th('Uptime').td($query->param('uptime')),
99 th('WAN MAC address').td($query->param('wan_hwaddr')),
100 th('WAN IP address').td($query->param('wan_ipaddr')),
101 th('WAN protocol').td($query->param('wan_proto')),
102 th('WAN receive bytes').td(
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/s390/char/
H A Dtubtty.c76 struct tty_driver *td = &tty3270_driver; local
80 td->magic = TTY_DRIVER_MAGIC;
81 td->driver_name = "tty3270";
82 td->name = "tty3270";
83 td->major = IBM_TTY3270_MAJOR;
84 td->minor_start = 0;
85 td->num = TUBMAXMINS;
86 td->type = TTY_DRIVER_TYPE_SYSTEM;
87 td->subtype = SYSTEM_TYPE_TTY;
88 td
[all...]
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/zlib/
H A Dmaketree.c56 inflate_huft *tl, *td; local
62 r = inflate_trees_fixed(&bl, &bd, &tl, &td, &z);
83 maketree(bd, td);
H A Dinffast.c28 int inflate_fast(bl, bd, tl, td, s, z)
31 inflate_huft *td; /* need separate declaration for Borland C++ */
82 e = (t = td + ((uInt)b & md))->exop;
H A Dinftrees.c321 int inflate_trees_dynamic(nl, nd, c, bl, bd, tl, td, hp, z)
328 inflate_huft * FAR *td; /* distance tree result */
356 r = huft_build(c + nl, nd, 0, cpdist, cpdext, td, bd, hp, &hn, v);
399 int inflate_trees_fixed(bl, bd, tl, td, z)
403 inflate_huft * FAR *td; /* distance tree result */
453 *td = fixed_td;
/asus-wl-520gu-7.0.1.45/src/cfe/cfe/usb/
H A Dohci.c157 * We *could* have included the ed and td in the software
167 #define ohci_transfer_from_td(softc,td) \
168 ((softc)->ohci_transfer_pool + ((td) - (softc)->ohci_hwtdpool))
191 void ohci_dumptd(ohci_td_t *td);
192 void ohci_dumptdchain(ohci_td_t *td);
232 void ohci_dumptd(ohci_td_t *td) argument
237 ctl = BSWAP32(td->td_control);
240 OHCI_VTOP(td),
248 BSWAP32(td->td_cbp),
249 BSWAP32(td
253 ohci_dumptdchain(ohci_td_t *td) argument
382 ohci_td_t *td; local
866 ohci_td_t *td; local
1340 ohci_td_t *td; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/sbus/audio/
H A Ddbri.c334 int td; local
340 td = dbri->pipes[pipe].desc;
342 while (td >= 0) {
343 if (td >= DBRI_NO_DESCS) {
344 printk("DBRI: invalid td on pipe %d\n", pipe);
348 status = DBRI_TD_STATUS(dbri->dma->desc[td].word4);
354 dprintk(D_INT, ("DBRI: TD %d, status 0x%02x\n", td, status));
356 buffer = dbri->descs[td].buffer;
359 dbri->descs[td].buffer_dvma,
360 dbri->descs[td]
449 int td = dbri->pipes[pipe].desc; local
847 int td = 0; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/lib/
H A Dinflate.c517 STATIC int inflate_codes(tl, td, bl, bd)
518 struct huft *tl, *td; /* literal/length and distance decoder tables */
519 int bl, bd; /* number of bits decoded by tl[] and td[] */
575 if ((e = (t = td + ((unsigned)b & md))->e) > 16)
689 struct huft *td; /* distance code table */ local
691 int bd; /* lookup bits for td */
714 if ((i = huft_build(l, 30, 0, cpdist, cpdext, &td, &bd)) > 1)
724 if (inflate_codes(tl, td, bl, bd))
730 huft_free(td);
745 struct huft *td; /* distanc local
906 huft_free(td); variable
[all...]
/asus-wl-520gu-7.0.1.45/src/shared/
H A Dgzip_inflate.c519 STATIC int inflate_codes(tl, td, bl, bd)
520 struct huft *tl, *td; /* literal/length and distance decoder tables */
521 int bl, bd; /* number of bits decoded by tl[] and td[] */
577 if ((e = (t = td + ((unsigned)b & md))->e) > 16)
691 struct huft *td; /* distance code table */ local
693 int bd; /* lookup bits for td */
716 if ((i = huft_build(l, 30, 0, cpdist, cpdext, &td, &bd)) > 1)
726 if (inflate_codes(tl, td, bl, bd))
732 huft_free(td);
747 struct huft *td; /* distanc local
908 huft_free(td); variable
[all...]
/asus-wl-520gu-7.0.1.45/src/router/busybox/libbb/
H A Dunzip.c360 * tl, td: literal/length and distance decoder tables
361 * bl, bd: number of bits decoded by tl[] and td[]
363 static int inflate_codes(huft_t *tl, huft_t *td, int bl, int bd) argument
430 if ((e = (t = td + ((unsigned) b & md))->e) > 16)
607 huft_t *td; /* distance code table */ local
609 int bd; /* lookup bits for td */
635 if ((i = huft_build(l, 30, 0, cpdist, cpdext, &td, &bd)) > 1) {
641 if (inflate_codes(tl, td, bl, bd))
646 huft_free(td);
664 huft_t *td; /* distanc local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/drivers/usb/gadget/
H A Dnet2280.c390 struct net2280_dma *td; local
392 td = pci_pool_alloc (ep->dev->requests, gfp_flags,
394 if (!td) {
398 td->dmacount = 0; /* not VALID */
399 td->dmaaddr = __constant_cpu_to_le32 (DMA_ADDR_INVALID);
400 td->dmadesc = td->dmaaddr;
401 req->td = td;
418 if (req->td)
702 struct net2280_dma *td = req->td; local
1678 struct net2280_dma *td; local
2795 struct net2280_dma *td; local
[all...]
/asus-wl-520gu-7.0.1.45/src/linux/linux/lib/zlib_inflate/
H A Dinffast.c28 int zlib_inflate_fast(bl, bd, tl, td, s, z)
31 inflate_huft *td; /* need separate declaration for Borland C++ */
78 e = (t = td + ((uInt)b & md))->exop;
H A Dinfblock.c137 inflate_huft *tl, *td; local
139 zlib_inflate_trees_fixed(&bl, &bd, &tl, &td, z);
140 s->sub.decode.codes = zlib_inflate_codes_new(bl, bd, tl, td, z);
273 inflate_huft *tl, *td; local
280 s->sub.trees.blens, &bl, &bd, &tl, &td,
289 if ((c = zlib_inflate_codes_new(bl, bd, tl, td, z)) == Z_NULL)
H A Dinftrees.c315 int zlib_inflate_trees_dynamic(nl, nd, c, bl, bd, tl, td, hp, z)
322 inflate_huft * FAR *td; /* distance tree result */
348 r = huft_build(c + nl, nd, 0, cpdist, cpdext, td, bd, hp, &hn, v);
379 int zlib_inflate_trees_fixed(bl, bd, tl, td, z)
383 inflate_huft * FAR *td; /* distance tree result */
389 *td = fixed_td;

Completed in 142 milliseconds

123