/src/sbin/rndctl/ |
rndctl.c | 432 do_ioctl(rndctl_t *rctl) 441 res = ioctl(fd, RNDCTL, rctl); 570 rndctl_t rctl; local in function:main 579 rctl.mask = 0; 580 rctl.flags = 0; 591 rctl.flags |= RND_FLAG_NO_COLLECT; 592 rctl.mask |= RND_FLAG_NO_COLLECT; 596 rctl.flags |= RND_FLAG_NO_ESTIMATE; 597 rctl.mask |= RND_FLAG_NO_ESTIMATE; 613 rctl.flags &= ~RND_FLAG_NO_COLLECT [all...] |
/src/sys/arch/sandpoint/stand/altboot/ |
wm.c | 111 unsigned ctl, tctl, rctl; member in struct:local 215 l->rctl = RCTL_EN | RCTL_LBM_NONE | RCTL_RDMTS_1_2; 217 CSR_WRITE(l, WMREG_RCTL, l->rctl);
|
/src/sys/dev/pci/igc/ |
if_igc.c | 2482 uint32_t rctl; local in function:igc_set_filter 2484 rctl = IGC_READ_REG(&sc->hw, IGC_RCTL); 2485 rctl &= ~(IGC_RCTL_BAM |IGC_RCTL_UPE | IGC_RCTL_MPE); 2488 rctl |= IGC_RCTL_BAM; 2491 rctl |= IGC_RCTL_UPE; 2496 rctl |= IGC_RCTL_MPE; 2537 IGC_WRITE_REG(&sc->hw, IGC_RCTL, rctl); 3418 uint32_t rctl, rxcsum, srrctl; local in function:igc_initialize_receive_unit 3426 rctl = IGC_READ_REG(hw, IGC_RCTL); 3427 IGC_WRITE_REG(hw, IGC_RCTL, rctl & ~IGC_RCTL_EN) [all...] |
/src/sys/dev/pci/ |
if_wm.c | 703 uint32_t sc_rctl; /* prototype RCTL register */ 5407 uint32_t rctl; local in function:wm_flush_desc_rings 5463 rctl = CSR_READ(sc, WMREG_RCTL); 5464 CSR_WRITE(sc, WMREG_RCTL, rctl & ~RCTL_EN); 5480 CSR_WRITE(sc, WMREG_RCTL, rctl | RCTL_EN); 5483 CSR_WRITE(sc, WMREG_RCTL, rctl & ~RCTL_EN); 7580 * the setting of RCTL.EN in wm_set_filter() 8528 * initialized after the setting of RCTL.EN in 10327 * in RCTL register is always set, so we don't trim it.
|