Searched refs:oa (Results 1 - 25 of 53) sorted by relevance

123

/netbsd-6-1-5-RELEASE/sys/arch/evbppc/ev64260/
H A Dcom_obio.c106 struct obio_attach_args *oa = aux; local
110 if (oa->oa_offset == OBIOCF_OFFSET_DEFAULT ||
111 oa->oa_size == OBIOCF_SIZE_DEFAULT)
114 if (com_is_console(oa->oa_memt, oa->oa_offset, NULL)) {
117 if (bus_space_map(oa->oa_memt, oa->oa_offset,
118 oa->oa_size, 0, &ioh))
120 rv = comprobe1(oa->oa_memt, ioh);
121 bus_space_unmap(oa
132 struct obio_attach_args *oa = aux; local
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/arm/omap/
H A Domap2_obio.c240 struct obio_attach_args oa; local
245 oa.obio_iot = &nobyteacc_bs_tag;
252 oa.obio_iot = &omap_bs_tag;
255 oa.obio_iot = &omap_a2x_bs_tag;
258 oa.obio_iot = &omap_a4x_bs_tag;
266 oa.obio_dmat = sc->sc_dmat;
267 oa.obio_addr = cf->cf_loc[OBIOCF_ADDR];
268 oa.obio_size = cf->cf_loc[OBIOCF_SIZE];
269 oa.obio_intr = cf->cf_loc[OBIOCF_INTR];
270 oa
296 struct obio_attach_args * const oa = aux; local
367 struct obio_attach_args oa; local
409 struct obio_attach_args *oa = (struct obio_attach_args*)aux; local
[all...]
H A Domap2_gpio.c323 struct obio_attach_args *oa = aux; local
326 if (oa->obio_addr == GPIO1_BASE_2420
327 || oa->obio_addr == GPIO2_BASE_2420
328 || oa->obio_addr == GPIO3_BASE_2420
329 || oa->obio_addr == GPIO4_BASE_2420)
334 if (oa->obio_addr == GPIO1_BASE_2430
335 || oa->obio_addr == GPIO2_BASE_2430
336 || oa->obio_addr == GPIO3_BASE_2430
337 || oa->obio_addr == GPIO4_BASE_2430
338 || oa
358 struct obio_attach_args * const oa = aux; local
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/rpc/
H A Drpc_callmsg.c74 struct opaque_auth *oa; local
103 oa = &cmsg->rm_call.cb_cred;
104 IXDR_PUT_ENUM(buf, oa->oa_flavor);
105 IXDR_PUT_INT32(buf, oa->oa_length);
106 if (oa->oa_length) {
107 memmove(buf, oa->oa_base, oa->oa_length);
108 buf += RNDUP(oa->oa_length) / sizeof (int32_t);
110 oa = &cmsg->rm_call.cb_verf;
111 IXDR_PUT_ENUM(buf, oa
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/arm/gemini/
H A Dgemini_obio.c234 struct obio_attach_args oa; local
240 oa.obio_iot = &nobyteacc_bs_tag;
248 oa.obio_iot = &gemini_bs_tag;
252 oa.obio_iot = &gemini_a2x_bs_tag;
256 oa.obio_iot = &gemini_a4x_bs_tag;
264 oa.obio_dmat = sc->sc_dmat;
265 oa.obio_addr = cf->cf_loc[OBIOCF_ADDR];
266 oa.obio_size = cf->cf_loc[OBIOCF_SIZE];
267 oa.obio_intr = cf->cf_loc[OBIOCF_INTR];
268 oa
281 struct obio_attach_args * const oa = aux; local
357 struct obio_attach_args oa; local
393 struct obio_attach_args *oa = (struct obio_attach_args*)aux; local
[all...]
H A Dgemini_gpio.c331 struct obio_attach_args *oa = aux; local
333 if (oa->obio_addr == GEMINI_GPIO0_BASE
334 || oa->obio_addr == GEMINI_GPIO1_BASE
335 || oa->obio_addr == GEMINI_GPIO2_BASE)
344 struct obio_attach_args * const oa = aux; local
348 if (oa->obio_intr == OBIOCF_INTR_DEFAULT)
351 if (oa->obio_size == OBIOCF_SIZE_DEFAULT)
352 oa->obio_size = GEMINI_GPIO_SIZE;
355 gpio->gpio_memt = oa->obio_iot;
356 error = bus_space_map(oa
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/mac68k/obio/
H A Dobio.c78 struct obio_attach_args *oa = (struct obio_attach_args *)args; local
80 if (oa->oa_addr != (-1))
81 aprint_normal(" addr %x", oa->oa_addr);
90 struct obio_attach_args oa; local
92 oa.oa_addr = cf->cf_loc[OBIOCF_ADDR];
93 oa.oa_tag = mba->mba_bst;
94 oa.oa_dmat = mba->mba_dmat;
96 if (config_match(parent, cf, &oa) > 0)
97 config_attach(parent, cf, &oa, obio_print);
H A Dgrf_obio.c102 struct obio_attach_args *oa = (struct obio_attach_args *)aux; local
114 if (bus_space_map(oa->oa_tag, base, 0x40, 0, &bsh))
118 bus_space_write_1(oa->oa_tag, bsh, 0x18, 0x1);
120 bus_space_unmap(oa->oa_tag, bsh, 0x40);
140 if (bus_space_map(oa->oa_tag, base, 0x20, 0, &bsh))
143 if (mac68k_bus_space_probe(oa->oa_tag, bsh, 0x1c, 4) == 0) {
144 bus_space_unmap(oa->oa_tag, bsh, 0x20);
148 bus_space_unmap(oa->oa_tag, bsh, 0x20);
150 if (bus_space_map(oa->oa_tag, base + 0x100, 0x20, 0, &bsh))
153 if (mac68k_bus_space_probe(oa
197 struct obio_attach_args *oa = (struct obio_attach_args *)aux; local
[all...]
H A Dif_sn_obio.c69 struct obio_attach_args *oa = aux; local
76 if (bus_space_map(oa->oa_tag,
80 if (mac68k_bus_space_probe(oa->oa_tag, bsh, 0, 4))
83 bus_space_unmap(oa->oa_tag, bsh, SONIC_NREGS * 4);
95 struct obio_attach_args *oa = aux; local
100 sc->sc_st = oa->oa_tag;
101 sc->sc_dmat = oa->oa_dmat;
H A Dasc.c131 struct obio_attach_args *oa = (struct obio_attach_args *)aux; local
136 if (oa->oa_addr != (-1))
137 addr = (bus_addr_t)oa->oa_addr;
145 if (bus_space_map(oa->oa_tag, addr, MAC68K_ASC_LEN, 0, &bsh))
148 if (mac68k_bus_space_probe(oa->oa_tag, bsh, 0, 1))
153 bus_space_unmap(oa->oa_tag, bsh, MAC68K_ASC_LEN);
162 struct obio_attach_args *oa = (struct obio_attach_args *)aux; local
166 sc->sc_tag = oa->oa_tag;
167 if (oa->oa_addr != (-1))
168 addr = (bus_addr_t)oa
[all...]
H A Dwdc_obio.c90 struct obio_attach_args *oa = (struct obio_attach_args *) aux; local
108 wdr.cmd_iot = wdr.ctl_iot = oa->oa_tag;
147 struct obio_attach_args *oa = aux; local
154 oa->oa_addr = IDEBase;
155 wdr->cmd_iot = wdr->ctl_iot = oa->oa_tag;
157 if (bus_space_map(wdr->cmd_iot, oa->oa_addr,
184 wdc_obio_isr_tag = oa->oa_tag;
187 oa->oa_addr+WDC_OBIO_ISR_OFFSET,
/netbsd-6-1-5-RELEASE/sys/arch/evbmips/alchemy/
H A Dobio.c79 struct obio_attach_args oa; local
88 oa.oba_name = od->od_name;
89 oa.oba_addr = od->od_addr;
90 oa.oba_irq = od->od_irq;
91 (void) config_found_sm_loc(self, "obio", NULL, &oa, obio_print,
100 struct obio_attach_args *oa = aux; local
103 cf->cf_loc[OBIOCF_ADDR] != oa->oba_addr)
112 struct obio_attach_args *oa = aux; local
115 aprint_normal("%s at %s", oa->oba_name, pnp);
116 if (oa
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/landisk/dev/
H A Dwdc_obio.c73 struct obio_attach_args *oa = aux; local
80 if (oa->oa_nio < 1)
82 if (oa->oa_nirq < 1)
85 if (oa->oa_io[0].or_addr == IOBASEUNK)
87 if (oa->oa_irq[0].or_irq == IRQUNK)
95 wdr.cmd_iot = oa->oa_iot;
96 if (bus_space_map(wdr.cmd_iot, oa->oa_io[0].or_addr,
108 wdr.ctl_iot = oa->oa_iot;
110 oa->oa_io[0].or_addr + WDC_OBIO_AUXREG_OFFSET,
117 oa
134 struct obio_attach_args *oa = aux; local
[all...]
H A Dpwrsw_obio.c73 struct obio_attach_args *oa = aux; local
78 oa->oa_nio = 0;
79 oa->oa_niomem = 0;
80 oa->oa_nirq = 1;
81 oa->oa_irq[0].or_irq = LANDISK_INTR_PWRSW;
H A Dbtn_obio.c100 struct obio_attach_args *oa = aux; local
105 oa->oa_nio = 0;
106 oa->oa_niomem = 0;
107 oa->oa_nirq = 1;
108 oa->oa_irq[0].or_irq = LANDISK_INTR_BTN;
H A Dobio.c118 struct obio_attach_args oa; local
122 oa.oa_iot = sc->sc_iot;
123 oa.oa_memt = sc->sc_memt;
133 oa.oa_io = res_io;
134 oa.oa_nio = 1;
136 oa.oa_iomem = res_mem;
137 oa.oa_niomem = 1;
139 oa.oa_irq = res_irq;
140 oa.oa_nirq = 1;
143 if (config_match(parent, cf, &oa) >
155 struct obio_attach_args *oa = args; local
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/mips/adm5120/
H A Dadm5120_obio.c131 obio_attach_args_create(struct obio_attach_args *oa, const struct obiodev *od, argument
134 oa->oba_name = od->od_name;
135 oa->oba_addr = od->od_addr;
136 oa->oba_irq = od->od_irq;
137 oa->oba_dt = dmat;
138 oa->oba_st = st;
139 oa->oba_gpio = gpio;
140 oa->oba_gpio_mask = od->od_gpio_mask;
147 struct obio_attach_args oa; local
158 obio_attach_args_create(&oa, o
170 struct obio_attach_args *oa = aux; local
182 struct obio_attach_args *oa = aux; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/g++.dg/opt/
H A Dptrmem3.C11 A oa(2);
12 return ((&oa)->*pdm) + (oa.*pmf)(2);
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/testsuite/g++.dg/opt/
H A Dptrmem3.C11 A oa(2);
12 return ((&oa)->*pdm) + (oa.*pmf)(2);
/netbsd-6-1-5-RELEASE/sys/arch/sgimips/ioc/
H A Doioc.c146 struct oioc_attach_args oa; local
148 oa.oa_name = oioc_devices[i].od_name;
149 oa.oa_irq = oioc_devices[i].od_irq;
150 oa.oa_burst_dma = sc->sc_burst_dma;
151 oa.oa_st = SGIMIPS_BUS_SPACE_NORMAL;
152 oa.oa_sh = sc->sc_ioh;
153 oa.oa_dmat = &sgimips_default_bus_dma_tag;
154 config_found_ia(self, "oioc", &oa, oioc_print);
161 struct oioc_attach_args *oa = aux; local
164 printf("%s at %s", oa
[all...]
H A Dif_le_oioc.c139 struct oioc_attach_args *oa = aux; local
144 if (strcmp(oa->oa_name, cf->cf_name) == 0)
155 struct oioc_attach_args *oa = aux; local
163 lesc->sc_st = oa->oa_st;
171 if ((error = bus_space_subregion(oa->oa_st, oa->oa_sh, OIOC_LANCE_RDP,
177 if ((error = bus_space_subregion(oa->oa_st, oa->oa_sh, OIOC_LANCE_RAP,
183 if ((error = bus_space_subregion(oa->oa_st, oa
[all...]
H A Doiocsc.c112 struct oioc_attach_args *oa = aux; local
114 if (strcmp(oa->oa_name, cf->cf_name) == 0)
128 struct oioc_attach_args *oa = aux; local
132 sc->sc_regt = oa->oa_st;
133 osc->sc_st = oa->oa_st;
134 osc->sc_sh = oa->oa_sh;
135 osc->sc_dmat = oa->oa_dmat;
137 if ((err = bus_space_subregion(oa->oa_st, oa->oa_sh, OIOC_WD33C93_ASR,
143 if ((err = bus_space_subregion(oa
[all...]
/netbsd-6-1-5-RELEASE/sys/dev/marvell/
H A Dobio.c147 struct obio_attach_args *oa = aux; local
150 aprint_normal("%s at %s", oa->oa_name, pnp);
151 aprint_normal(" addr %#x size %#x", oa->oa_offset, oa->oa_size);
152 if (oa->oa_irq != OBIOCF_IRQ_DEFAULT)
153 aprint_normal(" irq %d", oa->oa_irq);
164 struct obio_attach_args oa; local
166 oa.oa_name = cf->cf_name;
167 oa.oa_memt = sc->sc_iot;
168 oa
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/mips/rmi/
H A Drmixl_gpio.c189 struct obio_attach_args *oa = aux; local
191 if (oa->obio_addr == RMIXL_IO_DEV_GPIO) /* XXX XLS */
200 struct obio_attach_args * const oa = aux; local
206 if (oa->obio_intr == OBIOCF_INTR_DEFAULT)
209 if (oa->obio_size == OBIOCF_SIZE_DEFAULT)
210 oa->obio_size = 0x1000;
212 gpio->gpio_memt = oa->obio_eb_bst;
213 error = bus_space_map(oa->obio_eb_bst, oa->obio_addr, oa
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/testsuite/gcc.c-torture/compile/
H A D900313-1.c12 int aa, ba, ca, da, ea, fa, ga, ha, ia, ja, ka, la, ma, na, oa, pa; local
28 oa = bar ();
31 da, ea, fa, ga, ha, ia, ja, ka, la, ma, na, oa, pa);
36 da, ea, fa, ga, ha, ia, ja, ka, la, ma, na, oa, pa)
96 boofar (oa);
146 boofar (oa);

Completed in 194 milliseconds

123