/src/usr.sbin/ac/ |
Makefile | 3 PROG= ac 4 MAN= ac.8
|
/src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/ |
qcom-ipq4018-ap120c-ac.dts | 3 #include "qcom-ipq4018-ap120c-ac.dtsi" 10 label = "ap120c-ac:blue:status"; 16 label = "ap120c-ac:green:wlan2g"; 22 label = "ap120c-ac:red:wlan5g";
|
/src/libexec/fingerd/ |
fingerd.c | 67 int ch, ac = 2; local in function:main 100 av[ac++] = __UNCONST("-s"); 103 av[ac++] = __UNCONST("-h"); 106 av[ac++] = __UNCONST("-m"); 109 av[ac++] = __UNCONST("-p"); 112 av[ac++] = __UNCONST("-g"); 115 av[ac++] = __UNCONST("-8"); 121 if (ac >= ENTRIES) 151 if (ac >= ENTRIES) 153 av[ac++] = __UNCONST("--") [all...] |
/src/sys/dev/pci/ |
ld_amr.c | 123 struct amr_ccb *ac; local in function:ld_amr_dobio 130 if ((rv = amr_ccb_alloc(amr, &ac)) != 0) 133 mb = &ac->ac_cmd; 139 rv = amr_ccb_map(amr, ac, data, datasize, 142 amr_ccb_free(amr, ac); 151 rv = amr_ccb_poll(amr, ac, 30000); 152 amr_ccb_unmap(amr, ac); 153 amr_ccb_free(amr, ac); 155 ac->ac_handler = ld_amr_handler; 156 ac->ac_context = bp [all...] |
amr.c | 282 struct amr_ccb *ac; local in function:amr_attach 415 ac = malloc(sizeof(*ac) * AMR_MAX_CMDS, M_DEVBUF, M_WAITOK | M_ZERO); 416 amr->amr_ccbs = ac; 426 for (i = 0; i < AMR_MAX_CMDS; i++, ac++) { 429 BUS_DMA_NOWAIT | BUS_DMA_ALLOCNOW, &ac->ac_xfer_map); 433 ac->ac_ident = i; 434 cv_init(&ac->ac_cv, "amr1ccb"); 435 mutex_init(&ac->ac_mutex, MUTEX_DEFAULT, IPL_NONE); 436 amr_ccb_free(amr, ac); 546 struct amr_ccb *ac; local in function:amr_teardown 785 struct amr_ccb *ac; local in function:amr_shutdown 810 struct amr_ccb *ac; local in function:amr_intr 875 struct amr_ccb *ac; local in function:amr_quartz_thread 916 struct amr_ccb *ac; local in function:amr_std_thread 1027 struct amr_ccb *ac; local in function:amr_enquire 1480 struct amr_ccb *ac; local in function:amrioctl [all...] |
/src/sys/arch/hppa/stand/common/ |
exec_hppa.c | 54 size_t ac = BOOTARG_LEN; local in function:machdep_exec 57 makebootargs(av, &ac); 81 BOOTARG_APIVER, ac, av);
|
/src/sys/dev/isapnp/ |
ym_isapnp.c | 106 struct ad1848_softc *ac; local in function:ym_isapnp_attach 110 ac = &sc->sc_ad1848.sc_ad1848; 111 ac->sc_dev = self; 135 ac->sc_iot = sc->sc_iot; 137 &ac->sc_ioh)) { 141 ac->mode = 2; 142 ac->MCE_bit = MODE_CHANGE_ENABLE;
|
wss_isapnp.c | 90 struct ad1848_softc *ac; local in function:wss_isapnp_attach 95 ac = &sc->sc_ad1848.sc_ad1848; 96 ac->sc_dev = self; 145 ac->sc_iot = sc->sc_iot; 146 ac->sc_ioh = sc->sc_ioh; 164 ac->mode = 2;
|
/src/sys/dev/ic/ |
ld_aac.c | 110 struct aac_ccb *ac; local in function:ld_aac_dobio 123 ac = aac_ccb_alloc(aac, (dowrite ? AAC_CCB_DATA_OUT : AAC_CCB_DATA_IN)); 124 if (ac == NULL) 126 ac->ac_data = data; 127 ac->ac_datalen = datasize; 129 if ((rv = aac_ccb_map(aac, ac)) != 0) { 130 aac_ccb_free(aac, ac); 137 fib = ac->ac_fib; 160 xfer = ac->ac_dmamap_xfer; 203 xfer = ac->ac_dmamap_xfer [all...] |
aac.c | 224 struct aac_ccb *ac; local in function:aac_alloc_commands 277 ac = fm->fm_ccbs + i; 281 BUS_DMA_NOWAIT | BUS_DMA_ALLOCNOW, &ac->ac_dmamap_xfer); 284 ac = fm->fm_ccbs + i; 286 ac->ac_dmamap_xfer); 294 ac->ac_fibmap = fm; 295 ac->ac_fib = (struct aac_fib *) 297 ac->ac_fibphys = fibpa + i * sc->sc_max_fib_size; 298 aac_ccb_free(sc, ac); 921 struct aac_ccb *ac; local in function:aac_new_intr 1128 struct aac_ccb *ac; local in function:aac_host_response 1288 struct aac_ccb *ac; local in function:aac_ccb_alloc 1545 struct aac_ccb *ac; local in function:aac_dequeue_fib [all...] |
/src/distrib/utils/more/ |
main.c | 70 int ac; variable in typeref:typename:int 93 if (curr_ac >= ac) { 163 if (curr_ac >= ac) 200 if (curr_ac + n >= ac) { 273 ac = argc; 286 if (ac < 1) { 294 } while (++curr_ac < ac); 306 if (ac < 1) 316 } while (file < 0 && ++curr_ac < ac);
|
/src/sys/arch/mips/atheros/ |
ar_conf.c | 175 for (const struct atheros_chip *ac = chips; local in function:atheros_set_platformsw 176 ac < chips + __arraycount(chips); 177 ac++) { 178 const struct atheros_platformsw * const apsw = ac->ac_platformsw; 179 if (cid != ac->ac_cid || pid != ac->ac_pid) 186 if ((chipid & ac->ac_chipmask) == ac->ac_chipid) { 188 my_chip = ac;
|
/src/tools/host-mkdep/ |
configure.ac | 1 # $NetBSD: configure.ac,v 1.3 2003/07/26 20:24:00 salo Exp $
|
/src/sys/dev/raidframe/ |
rf_disks.c | 368 RF_AutoConfig_t *ac; local in function:rf_AutoConfigureDisks 389 ac = auto_config; 390 while(ac!=NULL) { 392 mod_counter = ac->clabel->mod_counter; 395 if (ac->clabel->mod_counter > mod_counter) { 396 mod_counter = ac->clabel->mod_counter; 399 ac->flag = 0; /* clear the general purpose flag */ 400 ac = ac->next; 413 ac = auto_config [all...] |
/src/sys/altq/ |
altq_var.h | 68 #define ACC_LOCK_INIT(ac) mtx_init(&(ac)->acc_mtx, "classifier", MTX_DEF) 69 #define ACC_LOCK_DESTROY(ac) mtx_destroy(&(ac)->acc_mtx) 70 #define ACC_LOCK(ac) mtx_lock(&(ac)->acc_mtx) 71 #define ACC_UNLOCK(ac) mtx_unlock(&(ac)->acc_mtx) 73 #define ACC_LOCK_INIT(ac) 74 #define ACC_LOCK_DESTROY(ac) [all...] |
/src/lib/libresolv/ |
support.c | 105 u_int32_t ac; local in function:dst_s_id_calc 112 for (ac = 0; size > 1; size -= 2, kp += 2) 113 ac += ((*kp) << 8) + *(kp + 1); 116 ac += ((*kp) << 8); 117 ac += (ac >> 16) & 0xffff; 119 return (ac & 0xffff);
|
/src/sys/dev/isa/ |
wss.c | 115 struct ad1848_softc *ac; local in function:wssattach 120 ac = &sc->sc_ad1848.sc_ad1848; 122 ad1848_init_locks(ac, IPL_AUDIO); 155 ac->parent = sc; 157 audio_attach_mi(&wss_hw_if, &sc->sc_ad1848, ac->sc_dev); 164 (void)config_found(ac->sc_dev, &arg, audioprint, 212 struct ad1848_softc *ac; local in function:wss_mixer_set_port 214 ac = addr; 215 return ad1848_mixer_set_port(ac, mappings, nummap, cp); 221 struct ad1848_softc *ac; local in function:wss_mixer_get_port 448 struct ad1848_softc *ac; local in function:madattach [all...] |
ym.c | 200 struct ad1848_softc *ac; local in function:ym_attach 204 ac = &sc->sc_ad1848.sc_ad1848; 207 ad1848_init_locks(ac, IPL_AUDIO); 214 ac->chip_name = YM_IS_SA3(sc) ? "OPL3-SA3" : "OPL3-SA2"; 225 ac->parent = sc; 233 ad1848_set_channel_gain(ac, AD1848_DAC_CHANNEL, &vol_dac); 234 ad1848_set_channel_gain(ac, AD1848_AUX2_CHANNEL, &vol_opl3); 243 ad1848_mute_channel(ac, AD1848_AUX1_CHANNEL, MUTE_ALL); /* CD */ 244 ad1848_mute_channel(ac, AD1848_LINE_CHANNEL, MUTE_ALL); /* line */ 245 ac->mute[AD1848_AUX1_CHANNEL] = MUTE_ALL 403 struct ad1848_softc *ac; local in function:ym_getdev 561 struct ad1848_softc *ac; local in function:ym_mixer_set_port 709 struct ad1848_softc *ac; local in function:ym_mixer_get_port 815 struct ad1848_softc *ac; local in function:ym_query_devinfo 1080 struct ad1848_softc *ac; local in function:ym_save_codec_regs 1092 struct ad1848_softc *ac; local in function:ym_restore_codec_regs 1197 struct ad1848_softc *ac; local in function:ym_codec_power_ctl [all...] |
/src/sys/arch/hpcmips/vr/ |
vrdmaau.c | 93 vrdmaau_set_aiuin(vrdmaau_chipset_tag_t ac, void *addr) 95 struct vrdmaau_softc *sc = ac->ac_sc; 110 vrdmaau_set_aiuout(vrdmaau_chipset_tag_t ac, void *addr) 112 struct vrdmaau_softc *sc = ac->ac_sc; 127 vrdmaau_set_fir(vrdmaau_chipset_tag_t ac, void *addr) 129 struct vrdmaau_softc *sc = ac->ac_sc;
|
/src/sys/arch/i386/pnpbios/ |
ym_pnpbios.c | 84 struct ad1848_softc *ac = &sc->sc_ad1848.sc_ad1848; local in function:ym_pnpbios_attach 87 ac->sc_dev = self; 138 ac->sc_iot = sc->sc_iot; 140 AD1848_NPORT, &ac->sc_ioh)) { 144 ac->mode = 2; 145 ac->MCE_bit = MODE_CHANGE_ENABLE;
|
/src/sys/dev/acpi/ |
ym_acpi.c | 91 struct ad1848_softc *ac = &sc->sc_ad1848.sc_ad1848; local in function:ym_acpi_attach 94 ac->sc_dev = self; 185 ac->sc_iot = sc->sc_iot; 187 AD1848_NPORT, &ac->sc_ioh)) { 195 ac->mode = 2; 196 ac->MCE_bit = MODE_CHANGE_ENABLE;
|
/src/sys/dev/hpc/ |
fontconv.c | 15 void fc_rcons(int ac, char* av[]); 16 void fc_rasops(int ac, char* av[]); 19 main(int ac, char* av[]) 29 fc_rcons(ac, av); 31 fc_rasops(ac, av); 36 fc_rasops(int ac, char* av[]) 108 fc_rcons(int ac, char* av[])
|
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
multc3.c | 23 long double ac = a * c; local in function:__multc3 28 __real__ z = ac - bd; 50 if (!recalc && (crt_isinf(ac) || crt_isinf(bd) ||
|
/src/games/hack/ |
def.permonst.h | 69 schar mlevel,mmove,ac,damn,damd; member in struct:permonst
|
/src/usr.sbin/srtconfig/ |
srtconfig.c | 42 static void handleargs(int ac, char **av) 45 if (ac == 2) 48 else if ((ac == 3) && !strcmp(av[2],"debug")) 51 else if ((ac == 3) && !strcmp(av[2],"flags")) 54 else if (ac == 3) 58 else if ((ac == 4) && !strcmp(av[2],"del")) 62 else if ((ac == 4) && !strcmp(av[2],"flags")) 66 else if ((ac == 7) && !strcmp(av[2],"add")) 73 else if ((ac == 8) && !strcmp(av[2],"set")) 281 int main(int ac, char **av [all...] |