| /src/common/lib/libc/quad/ |
| notdi2.c | 54 union uu aa; local 56 aa.q = a; 57 aa.ul[0] = ~aa.ul[0]; 58 aa.ul[1] = ~aa.ul[1]; 59 return (aa.q);
|
| ashldi3.c | 54 union uu aa; local 58 aa.q = a; 60 aa.ul[H] = aa.ul[L] << (unsigned int)(shift - INT_BITS); 61 aa.ul[L] = 0; 63 aa.ul[H] = (aa.ul[H] << shift) | 64 (aa.ul[L] >> (INT_BITS - shift)); 65 aa.ul[L] <<= shift; 67 return (aa.q) [all...] |
| lshldi3.c | 56 union uu aa; local 60 aa.q = a; 62 aa.ul[H] = aa.ul[L] << (unsigned int)(shift - INT_BITS); 63 aa.ul[L] = 0; 65 aa.ul[H] = (aa.ul[H] << shift) | 66 (aa.ul[L] >> (INT_BITS - shift)); 67 aa.ul[L] <<= shift; 69 return (aa.q) [all...] |
| lshrdi3.c | 55 union uu aa; local 59 aa.q = a; 61 aa.ul[L] = aa.ul[H] >> (shift - INT_BITS); 62 aa.ul[H] = 0; 64 aa.ul[L] = (aa.ul[L] >> shift) | 65 (aa.ul[H] << (unsigned int)(INT_BITS - shift)); 66 aa.ul[H] >>= shift; 68 return (aa.q) [all...] |
| anddi3.c | 53 union uu aa, bb; local 55 aa.q = a; 57 aa.ul[0] &= bb.ul[0]; 58 aa.ul[1] &= bb.ul[1]; 59 return (aa.q);
|
| iordi3.c | 53 union uu aa, bb; local 55 aa.q = a; 57 aa.ul[0] |= bb.ul[0]; 58 aa.ul[1] |= bb.ul[1]; 59 return (aa.q);
|
| xordi3.c | 53 union uu aa, bb; local 55 aa.q = a; 57 aa.ul[0] ^= bb.ul[0]; 58 aa.ul[1] ^= bb.ul[1]; 59 return (aa.q);
|
| ashrdi3.c | 55 union uu aa; local 59 aa.q = a; 71 s = (aa.sl[H] >> (INT_BITS - 1)) >> 1; 73 aa.ul[L] = aa.sl[H] >> (shift - INT_BITS); 74 aa.ul[H] = s; 76 aa.ul[L] = (aa.ul[L] >> shift) | 77 (aa.ul[H] << (unsigned int)(INT_BITS - shift)); 79 aa.sl[H] >>= shift [all...] |
| cmpdi2.c | 55 union uu aa, bb; local 57 aa.q = a; 59 return (aa.sl[H] < bb.sl[H] ? 0 : aa.sl[H] > bb.sl[H] ? 2 : 60 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1);
|
| ucmpdi2.c | 54 union uu aa, bb; local 56 aa.uq = a; 58 return (aa.ul[H] < bb.ul[H] ? 0 : aa.ul[H] > bb.ul[H] ? 2 : 59 aa.ul[L] < bb.ul[L] ? 0 : aa.ul[L] > bb.ul[L] ? 2 : 1);
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.cp/ |
| scope-err.cc | 19 myfunction (int aa) 23 i = aa + 42;
|
| overload-const.cc | 21 static void func(const int aa) {}
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.linespec/ |
| ls-errs.c | 19 myfunction (int aa) 23 i = aa + 42;
|
| /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.mi/ |
| mi-linespec-err-cp.cc | 19 myfunction (int aa) 23 i = aa + 42;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.cp/ |
| scope-err.cc | 19 myfunction (int aa) 23 i = aa + 42;
|
| overload-const.cc | 21 static void func(const int aa) {}
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.linespec/ |
| ls-errs.c | 19 myfunction (int aa) 23 i = aa + 42;
|
| /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.mi/ |
| mi-linespec-err-cp.cc | 19 myfunction (int aa) 23 i = aa + 42;
|
| /src/sys/netatalk/ |
| at_control.c | 64 static int at_scrub(struct ifnet * ifp, struct at_ifaddr * aa); 85 struct at_ifaddr *aa = 0; local 91 TAILQ_FOREACH(aa, &at_ifaddr, aa_list) 92 if (aa->aa_ifp == ifp) 108 * This may leave aa pointing to the first address on the 112 for (; aa; aa = TAILQ_NEXT(aa, aa_list)) 113 if (aa->aa_ifp == ifp && 114 sateqaddr(&aa->aa_addr, &ifra->ifra_addr) 329 struct at_ifaddr *aa = (void *) ifa; local 668 struct at_ifaddr *aa; local [all...] |
| /src/sys/arch/i386/pnpbios/ |
| ess_pnpbios.c | 66 struct pnpbiosdev_attach_args *aa = aux; local 68 if (strcmp(aa->idstr, "ESS0104") && /* 1788 */ 69 strcmp(aa->idstr, "ESS0114") && /* 1788 */ 70 strcmp(aa->idstr, "CPQAE27") && /* 1788 */ 71 strcmp(aa->idstr, "ESS1869") && /* 1869 */ 72 strcmp(aa->idstr, "CPQB0AB") && /* 1869 */ 73 strcmp(aa->idstr, "CPQB0AC") && /* 1869 */ 74 strcmp(aa->idstr, "CPQB0AD") && /* 1869 */ 75 strcmp(aa->idstr, "CPQB0F1") && /* 1869 */ 76 strcmp(aa->idstr, "ESS1878") && /* 1878 * 87 struct pnpbiosdev_attach_args *aa = aux; local [all...] |
| /src/common/lib/libc/arch/arm/quad/ |
| __aeabi_lcmp.c | 42 const union uu aa = { .q = a }, bb = { .q = b }; local 44 if (aa.sl[H] < bb.sl[H]) 46 if (aa.sl[H] > bb.sl[H]) 49 if (aa.sl[L] < bb.sl[L]) 51 if (aa.sl[L] > bb.sl[L])
|
| __aeabi_ulcmp.c | 42 const union uu aa = { .uq = a }, bb = { .uq = b }; local 44 if (aa.ul[H] < bb.ul[H]) 46 if (aa.ul[H] > bb.ul[H]) 49 if (aa.ul[L] < bb.ul[L]) 51 if (aa.ul[L] > bb.ul[L])
|
| /src/sys/arch/epoc32/epoc32/ |
| external.c | 75 struct external_attach_args aa; local 77 aa.name = cf->cf_name; 78 aa.iot = &external_bs_tag; 79 aa.addr = cf->cf_loc[EXTERNALCF_ADDR]; 80 aa.addr2 = cf->cf_loc[EXTERNALCF_ADDR2]; 81 aa.irq = cf->cf_loc[EXTERNALCF_IRQ]; 82 if (config_probe(parent, cf, &aa)) 83 config_attach(parent, cf, &aa, external_print, CFARGS_NONE); 91 struct external_attach_args *aa = aux; local 96 if (aa->addr != -1 [all...] |
| /src/sys/dev/pci/ |
| com_puc.c | 77 struct puc_attach_args *aa = aux; local 82 if (aa->type != PUC_PORT_TYPE_COM) 93 struct puc_attach_args *aa = aux; local 100 iface = PCI_INTERFACE(pci_conf_read(aa->pc, aa->tag, PCI_CLASS_REG)); 106 com_init_regs(&sc->sc_regs, aa->t, aa->h, aa->a); 107 sc->sc_frequency = aa->flags & PUC_COM_CLOCKMASK; 109 if (!aa->poll) [all...] |
| /src/sys/arch/arm/imx/ |
| imx51_wdog.c | 45 struct axi_attach_args *aa = aux; local 47 switch (aa->aa_addr) { 58 struct axi_attach_args *aa = aux; local 60 wdog_attach_common(parent, self, aa->aa_iot, aa->aa_addr, 61 WDOG_SIZE, aa->aa_irq);
|