Searched refs:ch (Results 26 - 50 of 1408) sorted by relevance

1234567891011>>

/freebsd-10-stable/sys/arm/ti/
H A Dti_sdma.h91 int ti_sdma_activate_channel(unsigned int *ch,
92 void (*callback)(unsigned int ch, uint32_t status, void *data), void *data);
93 int ti_sdma_deactivate_channel(unsigned int ch);
94 int ti_sdma_start_xfer(unsigned int ch, unsigned int src_paddr,
96 int ti_sdma_start_xfer_packet(unsigned int ch, unsigned int src_paddr,
99 int ti_sdma_stop_xfer(unsigned int ch);
100 int ti_sdma_enable_channel_irq(unsigned int ch, uint32_t flags);
101 int ti_sdma_disable_channel_irq(unsigned int ch);
102 int ti_sdma_get_channel_status(unsigned int ch, uint32_t *status);
103 int ti_sdma_set_xfer_endianess(unsigned int ch, unsigne
[all...]
H A Dti_sdma.c94 void (*callback)(unsigned int ch, uint32_t ch_status, void *data);
221 unsigned int ch, j; local
235 for (ch = 0; ch < NUM_DMA_CHANNELS; ch++) {
236 if (intr & (1 << ch)) {
237 channel = &sc->sc_channel[ch];
240 csr = ti_sdma_read_4(sc, DMA4_CSR(ch));
243 "%d\n", ch);
248 if ((sc->sc_active_channels & (1 << ch))
317 ti_sdma_activate_channel(unsigned int *ch, void (*callback)(unsigned int ch, uint32_t status, void *data), void *data) argument
403 ti_sdma_deactivate_channel(unsigned int ch) argument
458 ti_sdma_disable_channel_irq(unsigned int ch) argument
517 ti_sdma_enable_channel_irq(unsigned int ch, uint32_t flags) argument
583 ti_sdma_get_channel_status(unsigned int ch, uint32_t *status) argument
626 ti_sdma_start_xfer(unsigned int ch, unsigned int src_paddr, unsigned long dst_paddr, unsigned int frmcnt, unsigned int elmcnt) argument
720 ti_sdma_start_xfer_packet(unsigned int ch, unsigned int src_paddr, unsigned long dst_paddr, unsigned int frmcnt, unsigned int elmcnt, unsigned int pktsize) argument
801 ti_sdma_stop_xfer(unsigned int ch) argument
851 ti_sdma_set_xfer_endianess(unsigned int ch, unsigned int src, unsigned int dst) argument
896 ti_sdma_set_xfer_burst(unsigned int ch, unsigned int src, unsigned int dst) argument
938 ti_sdma_set_xfer_data_type(unsigned int ch, unsigned int type) argument
976 ti_sdma_set_callback(unsigned int ch, void (*callback)(unsigned int ch, uint32_t status, void *data), void *data) argument
1021 ti_sdma_sync_params(unsigned int ch, unsigned int trigger, unsigned int mode) argument
1084 ti_sdma_set_addr_mode(unsigned int ch, unsigned int src_mode, unsigned int dst_mode) argument
[all...]
/freebsd-10-stable/usr.bin/locate/locate/
H A Dlocate.h63 define TOLOWER(ch) tolower(ch)
67 #define TOLOWER(ch) (myctype[ch])
/freebsd-10-stable/sys/dev/ata/
H A Data-dma.c68 struct ata_channel *ch = device_get_softc(dev); local
71 if (ch->dma.alloc == NULL)
72 ch->dma.alloc = ata_dmaalloc;
73 if (ch->dma.free == NULL)
74 ch->dma.free = ata_dmafree;
75 if (ch->dma.setprd == NULL)
76 ch->dma.setprd = ata_dmasetprd;
77 if (ch->dma.load == NULL)
78 ch->dma.load = ata_dmaload;
79 if (ch
129 struct ata_channel *ch = device_get_softc(dev); local
160 struct ata_channel *ch = device_get_softc(dev); local
216 struct ata_channel *ch = device_get_softc(dev); local
270 struct ata_channel *ch = device_get_softc(request->parent); local
[all...]
H A Data-lowlevel.c49 static int ata_wait(struct ata_channel *ch, int unit, u_int8_t);
61 struct ata_channel *ch = device_get_softc(dev); local
63 ch->hw.begin_transaction = ata_begin_transaction;
64 ch->hw.end_transaction = ata_end_transaction;
65 ch->hw.status = ata_generic_status;
66 ch->hw.softreset = NULL;
67 ch->hw.command = ata_generic_command;
68 ch->hw.tf_read = ata_tf_read;
69 ch->hw.tf_write = ata_tf_write;
70 ch
78 struct ata_channel *ch = device_get_softc(request->parent); local
239 struct ata_channel *ch = device_get_softc(request->parent); local
473 struct ata_channel *ch = device_get_softc(dev); local
609 struct ata_channel *ch = device_get_softc(dev); local
620 ata_wait(struct ata_channel *ch, int unit, u_int8_t mask) argument
673 struct ata_channel *ch = device_get_softc(request->parent); local
755 struct ata_channel *ch = device_get_softc(request->parent); local
784 struct ata_channel *ch = device_get_softc(request->parent); local
814 struct ata_channel *ch = device_get_softc(request->parent); local
857 struct ata_channel *ch = device_get_softc(request->parent); local
[all...]
H A Data-all.c98 struct ata_channel *ch = device_get_softc(dev); local
106 if (ch->r_irq)
110 ch->dev = dev;
111 ch->state = ATA_IDLE;
112 bzero(&ch->state_mtx, sizeof(struct mtx));
113 mtx_init(&ch->state_mtx, "ATA state lock", NULL, MTX_DEF);
114 TASK_INIT(&ch->conntask, 0, ata_conn_event, dev);
116 ch->user[i].revision = 0;
124 ch->user[i].revision = mode;
125 ch
223 struct ata_channel *ch = device_get_softc(dev); local
263 struct ata_channel *ch = device_get_softc(dev); local
287 struct ata_channel *ch = device_get_softc(dev); local
312 struct ata_channel *ch; local
331 struct ata_channel *ch; local
350 struct ata_channel *ch = (struct ata_channel *)data; local
360 struct ata_channel *ch = (struct ata_channel *)data; local
395 struct ata_channel *ch = (struct ata_channel *)data; local
414 struct ata_channel *ch = device_get_softc(dev); local
698 struct ata_channel *ch = device_get_softc(dev); local
706 struct ata_channel *ch; local
732 struct ata_channel *ch = device_get_softc(dev); local
818 struct ata_channel *ch = device_get_softc(dev); local
857 struct ata_channel *ch = device_get_softc(dev); local
883 struct ata_channel *ch = device_get_softc(dev); local
954 struct ata_channel *ch = device_get_softc(dev); local
973 struct ata_channel *ch; local
1197 struct ata_channel *ch = (struct ata_channel *)cam_sim_softc(sim); local
[all...]
/freebsd-10-stable/usr.bin/systat/
H A Dkeyboard.c51 static int keyboard_dispatch(int ch);
56 int ch, n; local
94 ch = getch();
96 if (keyboard_dispatch(ch) == 0) {
121 keyboard_dispatch(int ch) argument
124 if (ch == ERR) {
129 if (ch >= 'A' && ch <= 'Z')
130 ch += 'a' - 'A';
132 if (ch
[all...]
/freebsd-10-stable/contrib/ncurses/ncurses/tinfo/
H A Dcomp_scan.c64 #define iswhite(ch) (ch == ' ' || ch == '\t')
291 eat_escaped_newline(int ch) argument
293 if (ch == '\\')
294 while ((ch = next_char()) == '\n' || iswhite(ch))
296 return ch;
304 #define AddCh(ch) \
305 *tok_ptr++ = (char) ch; \
353 int ch; local
737 chtype ch, last_ch = '\\0'; local
927 _nc_panic_mode(char ch) argument
[all...]
H A Dcomp_expand.c62 int ch; local
79 while ((ch = UChar(*str)) != 0) {
80 if (ch == '%' && REALPRINT(str + 1)) {
117 ch = (int) value;
119 if (ch == '\\'
120 || ch == S_QUOTE)
122 buffer[bufp++] = (char) ch;
136 } else if (ch == 128) {
139 } else if (ch == '\033') {
142 } else if (ch
[all...]
/freebsd-10-stable/lib/libc/inet/
H A Dinet_net_pton.c67 int n, ch, tmp = 0, dirty, bits; local
70 ch = *src++;
71 if (ch == '0' && (src[0] == 'x' || src[0] == 'X')
79 while ((ch = *src++) != '\0' && isascii(ch) && isxdigit(ch)) {
80 if (isupper(ch))
81 ch = tolower(ch);
82 n = strchr(xdigits, ch)
196 char ch; local
227 char ch; local
270 int ch, saw_xdigit; local
[all...]
/freebsd-10-stable/lib/libc/iconv/
H A Dcitrus_prop.c83 int ch, cutlim, n; \
90 ch = _memstream_getc(ms); \
91 p = strchr(xdigit, _bcs_toupper(ch)); \
99 _memstream_ungetc(ms, ch); \
112 int base, ch, neg; \
115 ch = _memstream_getc(ms); \
117 switch (ch) { \
121 ch = _memstream_getc(ms); \
124 if (ch == '0') { \
126 ch
150 int base, ch; local
200 int ch, errnum; local
249 int ch, errnum, quot; local
320 int ch; local
344 int ch, errnum; local
429 int ch, errnum; local
[all...]
/freebsd-10-stable/contrib/sendmail/contrib/
H A Dcidrexpand79 my $ch = substr($_,$i,1);
80 if ($ch eq '\\')
85 elsif ($qtype eq '' && $ch eq '#')
90 elsif ($qtype ne '' && $ch eq $qtype)
94 elsif ($qtype eq '' && $ch =~ /[\'\"]/)
96 $qtype = $ch;
/freebsd-10-stable/sys/dev/ahci/
H A Dahci.c63 static void ahci_ch_intr_main(struct ahci_channel *ch, uint32_t istatus);
64 static void ahci_begin_transaction(struct ahci_channel *ch, union ccb *ccb);
69 static int ahci_setup_fis(struct ahci_channel *ch, struct ahci_cmd_tab *ctp, union ccb *ccb, int tag);
75 static void ahci_reset(struct ahci_channel *ch);
76 static void ahci_start(struct ahci_channel *ch, int fbs);
77 static void ahci_stop(struct ahci_channel *ch);
78 static void ahci_clo(struct ahci_channel *ch);
79 static void ahci_start_fr(struct ahci_channel *ch);
80 static void ahci_stop_fr(struct ahci_channel *ch);
82 static int ahci_sata_connect(struct ahci_channel *ch);
622 struct ahci_channel *ch = device_get_softc(dev); local
758 struct ahci_channel *ch = device_get_softc(dev); local
790 struct ahci_channel *ch = device_get_softc(dev); local
815 struct ahci_channel *ch = device_get_softc(dev); local
836 struct ahci_channel *ch = device_get_softc(dev); local
856 struct ahci_channel *ch = device_get_softc(dev); local
890 struct ahci_channel *ch = device_get_softc(dev); local
956 struct ahci_channel *ch = device_get_softc(dev); local
983 struct ahci_channel *ch = device_get_softc(dev); local
1005 struct ahci_channel *ch = device_get_softc(dev); local
1021 ahci_phy_check_events(struct ahci_channel *ch, u_int32_t serr) argument
1051 ahci_cpd_check_events(struct ahci_channel *ch) argument
1083 ahci_notify_events(struct ahci_channel *ch, u_int32_t status) argument
1104 ahci_done(struct ahci_channel *ch, union ccb *ccb) argument
1120 struct ahci_channel *ch = (struct ahci_channel *)arg; local
1134 struct ahci_channel *ch = (struct ahci_channel *)arg; local
1161 struct ahci_channel *ch = (struct ahci_channel *)arg; local
1175 ahci_ch_intr_main(struct ahci_channel *ch, uint32_t istatus) argument
1334 ahci_check_collision(struct ahci_channel *ch, union ccb *ccb) argument
1384 ahci_begin_transaction(struct ahci_channel *ch, union ccb *ccb) argument
1437 struct ahci_channel *ch = slot->ch; local
1468 struct ahci_channel *ch = slot->ch; local
1609 ahci_process_timeout(struct ahci_channel *ch) argument
1625 ahci_rearm_timeout(struct ahci_channel *ch) argument
1648 struct ahci_channel *ch = slot->ch; local
1727 struct ahci_channel *ch = slot->ch; local
1938 ahci_issue_recovery(struct ahci_channel *ch) argument
2014 ahci_process_read_log(struct ahci_channel *ch, union ccb *ccb) argument
2073 ahci_process_request_sense(struct ahci_channel *ch, union ccb *ccb) argument
2094 ahci_start(struct ahci_channel *ch, int fbs) argument
2116 ahci_stop(struct ahci_channel *ch) argument
2137 ahci_clo(struct ahci_channel *ch) argument
2159 ahci_stop_fr(struct ahci_channel *ch) argument
2179 ahci_start_fr(struct ahci_channel *ch) argument
2189 ahci_wait_ready(struct ahci_channel *ch, int t, int t0) argument
2217 struct ahci_channel *ch = arg; local
2239 ahci_reset(struct ahci_channel *ch) argument
2330 ahci_setup_fis(struct ahci_channel *ch, struct ahci_cmd_tab *ctp, union ccb *ccb, int tag) argument
2380 ahci_sata_connect(struct ahci_channel *ch) argument
2423 ahci_sata_phy_reset(struct ahci_channel *ch) argument
2464 ahci_check_ids(struct ahci_channel *ch, union ccb *ccb) argument
2483 struct ahci_channel *ch; local
2669 struct ahci_channel *ch = (struct ahci_channel *)cam_sim_softc(sim); local
[all...]
/freebsd-10-stable/contrib/nvi/catalog/
H A Ddump.c51 int ch, s1, s2, s3; local
60 if ((ch = getc(fp)) == EOF) \
62 if (ch != '|') \
67 if ((ch = getc(fp)) == EOF) \
69 } while (ch != (t)); \
83 if ((ch = getc(fp)) == EOF)
85 putchar(ch);
86 if (ch == '"')
88 if (ch == '\\') {
89 if ((ch
[all...]
/freebsd-10-stable/sys/dev/sound/usb/
H A Duaudio.h42 extern void *uaudio_chan_init(struct uaudio_chan *ch, struct snd_dbuf *b,
44 extern int uaudio_chan_free(struct uaudio_chan *ch);
45 extern int uaudio_chan_set_param_blocksize(struct uaudio_chan *ch,
47 extern int uaudio_chan_set_param_fragments(struct uaudio_chan *ch,
49 extern int uaudio_chan_set_param_speed(struct uaudio_chan *ch,
51 extern int uaudio_chan_getptr(struct uaudio_chan *ch);
52 extern struct pcmchan_caps *uaudio_chan_getcaps(struct uaudio_chan *ch);
53 extern struct pcmchan_matrix *uaudio_chan_getmatrix(struct uaudio_chan *ch,
55 extern int uaudio_chan_set_param_format(struct uaudio_chan *ch,
57 extern void uaudio_chan_start(struct uaudio_chan *ch);
[all...]
/freebsd-10-stable/contrib/ncurses/ncurses/base/
H A Dkeyok.c56 unsigned ch = (unsigned) c; local
58 while ((s = _nc_expand_try(SP->_key_ok, ch, &count, 0)) != 0
59 && _nc_remove_key(&(SP->_key_ok), ch)) {
60 code = _nc_add_to_try(&(SP->_keytry), s, ch);
67 while ((s = _nc_expand_try(SP->_keytry, ch, &count, 0)) != 0
68 && _nc_remove_key(&(SP->_keytry), ch)) {
69 code = _nc_add_to_try(&(SP->_key_ok), s, ch);
/freebsd-10-stable/contrib/nvi/common/
H A Dconv.h30 #define KEY_NEEDSWIDE(sp, ch) \
31 (INTISWIDE(ch) && KEY_LEN(sp, ch) <= 4)
32 #define KEY_COL(sp, ch) \
33 (KEY_NEEDSWIDE(sp, ch) ? CHAR_WIDTH(sp, ch) : KEY_LEN(sp, ch))
/freebsd-10-stable/sys/mips/rmi/
H A Dxlr_pcmcia.c75 struct ata_channel *ch = device_get_softc(dev); local
77 ch->unit = 0;
78 ch->flags |= ATA_USE_16BIT | ATA_NO_SLAVE ;
91 struct ata_channel *ch = device_get_softc(dev); local
99 ch->r_io[i].res = mem_res;
104 ch->r_io[ATA_DATA].offset = XLR_PCMCIA_DATA_REG;
105 ch->r_io[ATA_FEATURE].offset = XLR_PCMCIA_ERROR_REG;
106 ch->r_io[ATA_COUNT].offset = XLR_PCMCIA_SECT_CNT_REG;
107 ch->r_io[ATA_SECTOR].offset = XLR_PCMCIA_SECT_NUM_REG;
108 ch
[all...]
/freebsd-10-stable/sys/mips/sibyte/
H A Data_zbbus.c60 struct ata_channel *ch; local
63 ch = device_get_softc(dev);
65 if (ch->attached)
67 ch->attached = 1;
96 ch->r_io[i].res = io;
97 ch->r_io[i].offset = (regoffset + i) << regshift;
100 ch->r_io[ATA_CONTROL].res = io;
101 ch->r_io[ATA_CONTROL].offset = (regoffset + ATA_CTLOFFSET) << regshift;
102 ch->r_io[ATA_IDX_ADDR].res = io; /* XXX what is this used for */
106 ch
117 struct ata_channel *ch = device_get_softc(dev); local
134 struct ata_channel *ch = device_get_softc(dev); local
145 struct ata_channel *ch = device_get_softc(dev); local
[all...]
/freebsd-10-stable/sys/dev/mvs/
H A Dmvs.c74 static int mvs_sata_connect(struct mvs_channel *ch);
117 struct mvs_channel *ch = device_get_softc(dev); local
121 ch->dev = dev;
122 ch->unit = (intptr_t)device_get_ivars(dev);
123 ch->quirks = ctlr->quirks;
124 mtx_init(&ch->mtx, "MVS channel lock", NULL, MTX_DEF);
126 device_get_unit(dev), "pm_level", &ch->pm_level);
127 if (ch->pm_level > 3)
128 callout_init_mtx(&ch->pm_timer, &ch
219 struct mvs_channel *ch = device_get_softc(dev); local
251 struct mvs_channel *ch = device_get_softc(dev); local
279 struct mvs_channel *ch = device_get_softc(dev); local
291 struct mvs_channel *ch = device_get_softc(dev); local
311 struct mvs_channel *ch = device_get_softc(dev); local
329 struct mvs_channel *ch = device_get_softc(dev); local
394 struct mvs_channel *ch = device_get_softc(dev); local
429 struct mvs_channel *ch = device_get_softc(dev); local
451 struct mvs_channel *ch = device_get_softc(dev); local
469 struct mvs_channel *ch = device_get_softc(dev); local
494 struct mvs_channel *ch = device_get_softc(dev); local
599 struct mvs_channel *ch = device_get_softc(dev); local
629 struct mvs_channel *ch = device_get_softc(dev); local
654 struct mvs_channel *ch = device_get_softc(dev); local
665 struct mvs_channel *ch = device_get_softc(dev); local
683 struct mvs_channel *ch = device_get_softc(dev); local
707 struct mvs_channel *ch = device_get_softc(dev); local
827 struct mvs_channel *ch = device_get_softc(dev); local
842 struct mvs_channel *ch = device_get_softc(dev); local
1023 struct mvs_channel *ch = device_get_softc(dev); local
1093 struct mvs_channel *ch = device_get_softc(dev); local
1144 struct mvs_channel *ch = device_get_softc(dev); local
1165 struct mvs_channel *ch = device_get_softc(dev); local
1188 struct mvs_channel *ch = device_get_softc(dev); local
1273 struct mvs_channel *ch = device_get_softc(slot->dev); local
1313 struct mvs_channel *ch = device_get_softc(dev); local
1428 struct mvs_channel *ch = device_get_softc(dev); local
1542 struct mvs_channel *ch = device_get_softc(dev); local
1559 struct mvs_channel *ch = device_get_softc(dev); local
1582 struct mvs_channel *ch = device_get_softc(dev); local
1613 struct mvs_channel *ch = device_get_softc(dev); local
1779 struct mvs_channel *ch = device_get_softc(dev); local
1856 struct mvs_channel *ch = device_get_softc(dev); local
1917 struct mvs_channel *ch = device_get_softc(dev); local
1957 struct mvs_channel *ch = device_get_softc(dev); local
1975 struct mvs_channel *ch = device_get_softc(dev); local
2003 struct mvs_channel *ch = device_get_softc(dev); local
2036 struct mvs_channel *ch = device_get_softc(dev); local
2116 struct mvs_channel *ch = device_get_softc(dev); local
2161 mvs_sata_connect(struct mvs_channel *ch) argument
2206 struct mvs_channel *ch = device_get_softc(dev); local
2237 struct mvs_channel *ch = device_get_softc(dev); local
2256 struct mvs_channel *ch; local
2443 struct mvs_channel *ch = (struct mvs_channel *)cam_sim_softc(sim); local
[all...]
/freebsd-10-stable/contrib/less/
H A Dcharset.c480 prutfchar(ch)
481 LWCHAR ch;
485 if (ch == ESC)
487 else if (ch < 128 && control_char(ch))
489 if (!control_char(ch ^ 0100))
490 SNPRINTF1(buf, sizeof(buf), "^%c", ((char) ch) ^ 0100);
492 SNPRINTF1(buf, sizeof(buf), binfmt, (char) ch);
493 } else if (is_ubin_char(ch))
495 SNPRINTF1(buf, sizeof(buf), utfbinfmt, ch);
693 LWCHAR ch; local
[all...]
/freebsd-10-stable/usr.bin/mkimg/
H A Dimage.c125 struct chunk *ch; local
127 ch = (last != NULL && last->ch_block <= blk)
129 while (ch != NULL) {
130 if (ch->ch_block <= blk &&
131 (lba_t)(ch->ch_block + (ch->ch_size / secsz)) > blk) {
132 last = ch;
135 ch = STAILQ_NEXT(ch, ch_list);
137 return (ch);
141 image_chunk_grow(struct chunk *ch, size_t sz) argument
158 image_chunk_memory(struct chunk *ch, lba_t blk) argument
204 struct chunk *ch; local
241 struct chunk *ch; local
580 struct chunk *ch; local
616 struct chunk *ch; local
655 struct chunk *ch; local
683 struct chunk *ch; local
[all...]
/freebsd-10-stable/sys/arm/broadcom/bcm2835/
H A Dbcm2835_dma.c130 static void bcm_dma_reg_dump(int ch);
135 int ch; member in struct:bcm_dma_ch
177 bcm_dma_reset(device_t dev, int ch) argument
184 if (ch < 0 || ch >= BCM_DMA_CH_MAX)
187 cs = bus_read_4(sc->sc_mem, BCM_DMA_CS(ch));
191 bus_write_4(sc->sc_mem, BCM_DMA_CS(ch), 0);
195 cs = bus_read_4(sc->sc_mem, BCM_DMA_CS(ch));
200 "Can't abort DMA transfer at channel %d\n", ch);
203 bus_write_4(sc->sc_mem, BCM_DMA_CBNEXT(ch),
225 struct bcm_dma_ch *ch; local
325 int ch = BCM_DMA_CH_INVALID; local
360 bcm_dma_free(int ch) argument
387 bcm_dma_setup_intr(int ch, void (*func)(int, void *), void *arg) argument
421 bcm_dma_setup_src(int ch, int dreq, int inc_addr, int width) argument
471 bcm_dma_setup_dst(int ch, int dreq, int inc_addr, int width) argument
525 bcm_dma_reg_dump(int ch) argument
553 bcm_dma_start(int ch, vm_paddr_t src, vm_paddr_t dst, int len) argument
597 bcm_dma_length(int ch) argument
617 struct bcm_dma_ch *ch = (struct bcm_dma_ch *)arg; local
[all...]
/freebsd-10-stable/sys/dev/dcons/
H A Ddcons.c53 struct dcons_ch *ch; local
55 ch = &dc->i;
57 ptr = ntohl(*ch->ptr);
60 if (gen == ch->gen && pos == ch->pos)
63 next_gen = DCONS_NEXT_GEN(ch->gen);
65 if ((gen != ch->gen && gen != next_gen)
66 || (gen == ch->gen && pos < ch->pos)) {
69 ch
82 struct dcons_ch *ch; local
116 struct dcons_ch *ch; local
[all...]
/freebsd-10-stable/sys/dev/sound/pci/
H A Dt4dwave.c310 tr_testint(struct tr_chinfo *ch)
312 struct tr_info *tr = ch->parent;
315 bank = (ch->index & 0x20) ? 1 : 0;
316 chan = ch->index & 0x1f;
322 tr_clrint(struct tr_chinfo *ch) argument
324 struct tr_info *tr = ch->parent;
327 bank = (ch->index & 0x20) ? 1 : 0;
328 chan = ch->index & 0x1f;
333 tr_enaint(struct tr_chinfo *ch, int enable) argument
335 struct tr_info *tr = ch
356 tr_selch(struct tr_chinfo *ch) argument
368 tr_startch(struct tr_chinfo *ch) argument
379 tr_stopch(struct tr_chinfo *ch) argument
390 tr_wrch(struct tr_chinfo *ch) argument
440 tr_rdch(struct tr_chinfo *ch) argument
504 struct tr_chinfo *ch; local
521 struct tr_chinfo *ch = data; local
531 struct tr_chinfo *ch = data; local
540 struct tr_chinfo *ch = data; local
549 struct tr_chinfo *ch = data; local
582 struct tr_chinfo *ch = data; local
613 struct tr_rchinfo *ch; local
629 struct tr_rchinfo *ch = data; local
647 struct tr_rchinfo *ch = data; local
661 struct tr_rchinfo *ch = data; local
671 struct tr_rchinfo *ch = data; local
703 struct tr_rchinfo *ch = data; local
735 struct tr_chinfo *ch; local
[all...]

Completed in 147 milliseconds

1234567891011>>