Searched refs:aa (Results 151 - 175 of 271) sorted by relevance

1234567891011

/openbsd-current/sys/dev/acpi/
H A Dacpitz.c169 struct acpi_attach_args *aa = aux; local
173 if (aa->aaa_name == NULL ||
174 strcmp(aa->aaa_name, cf->cf_driver->cd_name) != 0 ||
175 aa->aaa_table != NULL)
178 if (aa->aaa_node->value->type != AML_OBJTYPE_THERMZONE)
188 struct acpi_attach_args *aa = aux; local
193 sc->sc_devnode = aa->aaa_node;
H A Dacpiprt.c90 struct acpi_attach_args *aa = aux; local
94 if (aa->aaa_name == NULL ||
95 strcmp(aa->aaa_name, cf->cf_driver->cd_name) != 0 ||
96 aa->aaa_table != NULL)
106 struct acpi_attach_args *aa = aux; local
111 sc->sc_devnode = aa->aaa_node;
H A Dabl.c87 struct acpi_attach_args *aa = aux; local
90 return acpi_matchhids(aa, abl_hids, cf->cf_driver->cd_name);
H A Dacpidock.c75 struct acpi_attach_args *aa = aux; local
78 sc->sc_devnode = aa->aaa_node;
111 aml_register_notify(sc->sc_devnode, aa->aaa_dev,
H A Dacpisbs.c159 struct acpi_attach_args *aa = aux; local
162 return (acpi_matchhids(aa, acpisbs_hids, cf->cf_driver->cd_name));
169 struct acpi_attach_args *aa = aux; local
173 sc->sc_devnode = aa->aaa_node;
221 aml_register_notify(sc->sc_devnode->parent, aa->aaa_dev,
/openbsd-current/sys/dev/pci/
H A Dagp_amd.c157 struct agp_attach_args *aa = aux; local
158 struct pci_attach_args *pa = aa->aa_pa;
161 if (agpbus_probe(aa) == 1 && PCI_VENDOR(pa->pa_id) == PCI_VENDOR_AMD &&
173 struct agp_attach_args *aa = aux; local
174 struct pci_attach_args *pa = aa->aa_pa;
H A Dagp_via.c96 struct agp_attach_args *aa = aux; local
97 struct pci_attach_args *pa = aa->aa_pa;
100 if (agpbus_probe(aa) == 1 &&
114 struct agp_attach_args *aa = aux; local
115 struct pci_attach_args *pa = aa->aa_pa;
H A Dfms.c137 struct audio_attach_args aa; local
246 aa.type = AUDIODEV_TYPE_OPL;
247 aa.hwif = NULL;
248 aa.hdl = NULL;
249 config_found(&sc->sc_dev, &aa, audioprint);
251 aa.type = AUDIODEV_TYPE_MPU;
252 aa.hwif = NULL;
253 aa.hdl = NULL;
254 sc->sc_mpu_dev = config_found(&sc->sc_dev, &aa, audioprint);
H A Dagp_intel.c98 struct agp_attach_args *aa = aux; local
99 struct pci_attach_args *pa = aa->aa_pa;
102 if (agpbus_probe(aa) == 0)
132 struct agp_attach_args *aa = aux; local
133 struct pci_attach_args *pa = aa->aa_pa;
H A Dmmuagp.c135 struct agp_attach_args *aa = aux; local
136 struct pci_attach_args *pa = aa->aa_pa;
139 if (agpbus_probe(aa) == 0)
233 struct agp_attach_args *aa = aux; local
234 struct pci_attach_args *pa = aa->aa_pa;
/openbsd-current/sys/arch/amd64/amd64/
H A Defifb.c167 struct wsemuldisplaydev_attach_args aa; local
220 memset(&aa, 0, sizeof(aa));
221 aa.console = console;
222 aa.scrdata = &efifb_screen_list;
223 aa.accessops = &efifb_accessops;
224 aa.accesscookie = ri;
225 aa.defaultscreens = 0;
227 config_found_sm(self, &aa, wsemuldisplaydevprint,
/openbsd-current/sys/dev/fdt/
H A Drkdrm.c367 struct wsemuldisplaydev_attach_args aa; local
463 memset(&aa, 0, sizeof(aa));
464 aa.scrdata = &rkdrm_screenlist;
465 aa.accessops = &rkdrm_accessops;
466 aa.accesscookie = ri;
467 aa.console = console;
472 config_found_sm(&sc->sc_dev, &aa, wsemuldisplaydevprint,
486 struct wsemuldisplaydev_attach_args aa; local
/openbsd-current/sys/arch/arm64/dev/
H A Dapldc.c357 struct apldchidev_attach_args aa; local
429 aa.aa_name = "keyboard";
430 aa.aa_desc = sc->sc_kbddesc;
431 aa.aa_desclen = sc->sc_kbddesclen;
432 sc->sc_kbd = config_found(self, &aa, NULL);
1077 struct apldchidev_attach_args aa; local
1113 aa.aa_name = "multi-touch";
1114 aa.aa_desc = sc->sc_mtdesc;
1115 aa.aa_desclen = sc->sc_mtdesclen;
1116 sc->sc_mt = config_found(self, &aa, NUL
1178 struct apldchidev_attach_args *aa = aux; local
1187 struct apldchidev_attach_args *aa = aux; local
1375 struct apldchidev_attach_args *aa = aux; local
1384 struct wsmousedev_attach_args aa; local
[all...]
/openbsd-current/gnu/usr.bin/perl/t/op/
H A Ddie_keeperr.t17 foreach my $inx ("", "aabbcc\n", [qw(aa bb cc)]) {
35 { my $e = end { no warnings "misc"; die "aa\n"; }; }
43 { my $e = end { use warnings "misc"; die "aa\n"; }; }
44 is $warn, "\t(in cleanup) aa\n";
50 { my $e = end { no warnings "misc"; die "aa\n"; }; }
57 { my $e = end { use warnings "misc"; die "aa\n"; }; }
58 is $warn, "\t(in cleanup) aa\n";
65 { my $e = end { no warnings "misc"; die "aa\n"; }; }
73 { my $e = end { use warnings "misc"; die "aa\n"; }; }
74 is $warn, "\t(in cleanup) aa\
[all...]
H A D64bitint.t423 my $aa = 0xfffffffe00000001;
425 my $mm = -$aa;
429 cmp_ok $aa, '==', 18446744065119617025, "halfbits aa";
430 cmp_ok $mm, '==', -18446744065119617025, "halfbits -aa";
431 cmp_ok $a * $a, '==', $aa, "halfbits a * a";
434 cmp_ok $m * $m, '==', $aa, "halfbits -a * -a";
/openbsd-current/sys/arch/macppc/macppc/
H A Dautoconf.c254 struct ata_atapi_attach *aa = aux; local
256 if (aa->aa_drv_data->drive == bootdev_unit)
/openbsd-current/include/arpa/
H A Dnameser.h288 unsigned aa: 1; /* authoritative answer */ member in struct:__anon1
302 unsigned aa :1; /* authoritative answer */ member in struct:__anon1
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGVLIW.cpp66 ScheduleDAGVLIW(MachineFunction &mf, AAResults *aa, argument
68 : ScheduleDAGSDNodes(mf), AvailableQueue(availqueue), AA(aa) {
/openbsd-current/sys/arch/armv7/omap/
H A Dprcm.c118 struct armv7_attach_args *aa = args; local
123 sc->sc_iot = aa->aa_iot;
148 if (bus_space_map(sc->sc_iot, aa->aa_dev->mem[0].addr,
149 aa->aa_dev->mem[0].size, 0, &sc->sc_prcm))
153 bus_space_map(sc->sc_iot, aa->aa_dev->mem[1].addr,
154 aa->aa_dev->mem[1].size, 0, &sc->sc_cm1))
158 bus_space_map(sc->sc_iot, aa->aa_dev->mem[2].addr,
159 aa->aa_dev->mem[2].size, 0, &sc->sc_cm2))
/openbsd-current/gnu/usr.bin/perl/cpan/Scalar-List-Utils/t/
H A Dreduce.t29 my($aa, $bb) = @_;
30 return $aa + $bb;
/openbsd-current/usr.sbin/eigrpd/
H A Dutil.c183 in_addr_t mask, aa, ba; local
194 aa = htonl(a->v4.s_addr) & mask;
196 return (aa - ba);
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/
H A Dbfin-parse.c649 check_multiply_halfregs (Macfunc *aa, Macfunc *ab) argument
651 if ((!REG_EQUAL (aa->s0, ab->s0) && !REG_EQUAL (aa->s0, ab->s1))
652 || (!REG_EQUAL (aa->s1, ab->s1) && !REG_EQUAL (aa->s1, ab->s0)))
662 check_macfuncs (Macfunc *aa, Opt_mode *opa, argument
671 if (aa->n == 0)
679 mtmp = *aa; *aa = *ab; *ab = mtmp;
694 if (aa
[all...]
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/config/
H A Dbfin-parse.y258 check_multiply_halfregs (Macfunc *aa, Macfunc *ab)
260 if ((!REG_EQUAL (aa->s0, ab->s0) && !REG_EQUAL (aa->s0, ab->s1))
261 || (!REG_EQUAL (aa->s1, ab->s1) && !REG_EQUAL (aa->s1, ab->s0)))
271 check_macfuncs (Macfunc *aa, Opt_mode *opa,
280 if (aa->n == 0)
288 mtmp = *aa; *aa = *ab; *ab = mtmp;
303 if (aa
[all...]
/openbsd-current/gnu/usr.bin/perl/t/run/
H A Dfresh_perl.t102 $aa=new N 1;
103 $aa=12345;
104 print $aa;
/openbsd-current/sys/arch/octeon/dev/
H A Doctdwctwo.c143 struct iobus_attach_args *aa = aux; local
149 sc->sc_dwc2.sc_bus.dmatag = aa->aa_dmat;
157 sc->sc_bust = aa->aa_bust;

Completed in 234 milliseconds

1234567891011