nsc               114 dev/ic/dl10019.c 	struct ne2000_softc *nsc = (void *) sc;
nsc               117 dev/ic/dl10019.c 	if (nsc->sc_type != NE2000_TYPE_DL10022)
nsc               214 dev/ic/dl10019.c 	struct ne2000_softc *nsc = (void *) self;
nsc               217 dev/ic/dl10019.c 	ops = (nsc->sc_type == NE2000_TYPE_DL10022) ?
nsc               226 dev/ic/dl10019.c 	struct ne2000_softc *nsc = (void *) self;
nsc               229 dev/ic/dl10019.c 	ops = (nsc->sc_type == NE2000_TYPE_DL10022) ?
nsc               239 dev/ic/dl10019.c 	struct ne2000_softc *nsc = (void *) self;
nsc               245 dev/ic/dl10019.c 	if (nsc->sc_type == NE2000_TYPE_DL10022) {
nsc               393 dev/ic/lsi64854.c 	struct ncr53c9x_softc *nsc = sc->sc_client;
nsc               428 dev/ic/lsi64854.c 		        NCR_READ_REG(nsc, NCR_TCL) |
nsc               429 dev/ic/lsi64854.c 		                (NCR_READ_REG(nsc, NCR_TCM) << 8),
nsc               430 dev/ic/lsi64854.c 		        NCR_READ_REG(nsc, NCR_TCL),
nsc               431 dev/ic/lsi64854.c 		        NCR_READ_REG(nsc, NCR_TCM)));
nsc               443 dev/ic/lsi64854.c 	    (resid = (NCR_READ_REG(nsc, NCR_FFLAG) & NCRFIFO_FF)) != 0) {
nsc               445 dev/ic/lsi64854.c 		if (nsc->sc_rev == NCR_VARIANT_FAS366 &&
nsc               446 dev/ic/lsi64854.c 		    (NCR_READ_REG(nsc, NCR_CFG3) & NCRFASCFG3_EWIDE))
nsc               450 dev/ic/lsi64854.c 	if ((nsc->sc_espstat & NCRSTAT_TC) == 0) {
nsc               455 dev/ic/lsi64854.c 		resid += (NCR_READ_REG(nsc, NCR_TCL) |
nsc               456 dev/ic/lsi64854.c 			  (NCR_READ_REG(nsc, NCR_TCM) << 8) |
nsc               457 dev/ic/lsi64854.c 			   ((nsc->sc_cfg2 & NCRCFG2_FE)
nsc               458 dev/ic/lsi64854.c 				? (NCR_READ_REG(nsc, NCR_TCH) << 16)
nsc               462 dev/ic/lsi64854.c 		    (nsc->sc_cfg2 & NCRCFG2_FE) == 0)
nsc               482 dev/ic/lsi64854.c 		NCR_READ_REG(nsc, NCR_TCL),
nsc               483 dev/ic/lsi64854.c 		NCR_READ_REG(nsc, NCR_TCM),
nsc               484 dev/ic/lsi64854.c 		(nsc->sc_cfg2 & NCRCFG2_FE)
nsc               485 dev/ic/lsi64854.c 			? NCR_READ_REG(nsc, NCR_TCH) : 0,
nsc               501 dev/ic/lsi64854.c 	    nsc->sc_phase != nsc->sc_prevphase)
nsc               102 dev/ic/ne2000.c ne2000_attach(struct ne2000_softc *nsc, u_int8_t *myea)
nsc               104 dev/ic/ne2000.c 	struct dp8390_softc *dsc = &nsc->sc_dp8390;
nsc               107 dev/ic/ne2000.c 	bus_space_tag_t asict = nsc->sc_asict;
nsc               108 dev/ic/ne2000.c 	bus_space_handle_t asich = nsc->sc_asich;
nsc               116 dev/ic/ne2000.c 	if (nsc->sc_type == NE2000_TYPE_UNKNOWN)
nsc               117 dev/ic/ne2000.c 		nsc->sc_type = ne2000_detect(nsc);
nsc               122 dev/ic/ne2000.c 	switch (nsc->sc_type) {
nsc               141 dev/ic/ne2000.c 	nsc->sc_useword = useword;
nsc               144 dev/ic/ne2000.c 	if (nsc->sc_type == NE2000_TYPE_AX88190 ||
nsc               145 dev/ic/ne2000.c 	    nsc->sc_type == NE2000_TYPE_AX88790) {
nsc               248 dev/ic/ne2000.c 		if (nsc->sc_type == NE2000_TYPE_AX88190 ||
nsc               249 dev/ic/ne2000.c 		    nsc->sc_type == NE2000_TYPE_AX88790) {
nsc               298 dev/ic/ne2000.c ne2000_detect(struct ne2000_softc *nsc)
nsc               300 dev/ic/ne2000.c 	struct dp8390_softc *dsc = &nsc->sc_dp8390;
nsc               303 dev/ic/ne2000.c 	bus_space_tag_t asict = nsc->sc_asict;
nsc               304 dev/ic/ne2000.c 	bus_space_handle_t asich = nsc->sc_asich;
nsc               469 dev/ic/ne2000.c 	struct ne2000_softc *nsc = (struct ne2000_softc *)sc;
nsc               472 dev/ic/ne2000.c 	bus_space_tag_t asict = nsc->sc_asict;
nsc               473 dev/ic/ne2000.c 	bus_space_handle_t asich = nsc->sc_asich;
nsc               509 dev/ic/ne2000.c 	if (nsc->sc_type == NE2000_TYPE_NE1000) {
nsc               629 dev/ic/ne2000.c 	struct ne2000_softc *nsc = (struct ne2000_softc *)sc;
nsc               632 dev/ic/ne2000.c 	bus_space_tag_t asict = nsc->sc_asict;
nsc               633 dev/ic/ne2000.c 	bus_space_handle_t asich = nsc->sc_asich;
nsc               635 dev/ic/ne2000.c 	int useword = nsc->sc_useword;
nsc               659 dev/ic/ne2000.c 	struct ne2000_softc *nsc = (struct ne2000_softc *)sc;
nsc               661 dev/ic/ne2000.c 	ne2000_readmem(sc->sc_regt, sc->sc_regh, nsc->sc_asict, nsc->sc_asich,
nsc               663 dev/ic/ne2000.c 	    nsc->sc_useword);
nsc               101 dev/isa/if_ne_isa.c 	struct ne2000_softc *nsc = &isc->sc_ne2000;
nsc               102 dev/isa/if_ne_isa.c 	struct dp8390_softc *dsc = &nsc->sc_dp8390;
nsc               131 dev/isa/if_ne_isa.c 	nsc->sc_asict = asict;
nsc               132 dev/isa/if_ne_isa.c 	nsc->sc_asich = asich;
nsc               135 dev/isa/if_ne_isa.c 	nsc->sc_type = ne2000_detect(nsc);
nsc               137 dev/isa/if_ne_isa.c 	if (nsc->sc_type)
nsc               142 dev/isa/if_ne_isa.c 	return (nsc->sc_type);
nsc               149 dev/isa/if_ne_isa.c 	struct ne2000_softc *nsc = &isc->sc_ne2000;
nsc               150 dev/isa/if_ne_isa.c 	struct dp8390_softc *dsc = &nsc->sc_dp8390;
nsc               173 dev/isa/if_ne_isa.c 	nsc->sc_asict = asict;
nsc               174 dev/isa/if_ne_isa.c 	nsc->sc_asich = asich;
nsc               176 dev/isa/if_ne_isa.c 	switch (nsc->sc_type) {
nsc               214 dev/isa/if_ne_isa.c 	ne2000_attach(nsc, NULL);
nsc               109 dev/isa/if_ne_isapnp.c 	struct ne2000_softc * const nsc = &isc->sc_ne2000;
nsc               110 dev/isa/if_ne_isapnp.c 	struct dp8390_softc * const dsc = &nsc->sc_dp8390;
nsc               133 dev/isa/if_ne_isapnp.c 	nsc->sc_asict = asict;
nsc               134 dev/isa/if_ne_isapnp.c 	nsc->sc_asich = asich;
nsc               140 dev/isa/if_ne_isapnp.c 	netype = ne2000_detect(nsc);
nsc               179 dev/isa/if_ne_isapnp.c 	ne2000_attach(nsc, NULL);
nsc               179 dev/pci/if_ne_pci.c 	struct ne2000_softc *nsc = &psc->sc_ne2000;
nsc               180 dev/pci/if_ne_pci.c 	struct dp8390_softc *dsc = &nsc->sc_dp8390;
nsc               215 dev/pci/if_ne_pci.c 	nsc->sc_asict = asict;
nsc               216 dev/pci/if_ne_pci.c 	nsc->sc_asich = asich;
nsc               249 dev/pci/if_ne_pci.c 	ne2000_attach(nsc, NULL);
nsc               600 dev/pcmcia/if_ne_pcmcia.c 	struct ne2000_softc *nsc = &psc->sc_ne2000;
nsc               601 dev/pcmcia/if_ne_pcmcia.c 	struct dp8390_softc *dsc = &nsc->sc_dp8390;
nsc               674 dev/pcmcia/if_ne_pcmcia.c 	nsc->sc_asict = psc->sc_pcioh.iot;
nsc               676 dev/pcmcia/if_ne_pcmcia.c 	    NE2000_ASIC_OFFSET, NE2000_ASIC_NPORTS, &nsc->sc_asich)) {
nsc               760 dev/pcmcia/if_ne_pcmcia.c 		nsc->sc_type = NE2000_TYPE_AX88190;
nsc               778 dev/pcmcia/if_ne_pcmcia.c 	if (nsc->sc_type == NE2000_TYPE_DL10019 ||
nsc               779 dev/pcmcia/if_ne_pcmcia.c 	    nsc->sc_type == NE2000_TYPE_DL10022) {
nsc               795 dev/pcmcia/if_ne_pcmcia.c 	if (ne2000_attach(nsc, enaddr))
nsc               918 dev/pcmcia/if_ne_pcmcia.c 	struct ne2000_softc *nsc = &psc->sc_ne2000;
nsc               919 dev/pcmcia/if_ne_pcmcia.c 	struct dp8390_softc *dsc = &nsc->sc_dp8390;
nsc               956 dev/pcmcia/if_ne_pcmcia.c 	struct ne2000_softc *nsc = &psc->sc_ne2000;
nsc               961 dev/pcmcia/if_ne_pcmcia.c 		sum += bus_space_read_1(nsc->sc_asict, nsc->sc_asich,
nsc               968 dev/pcmcia/if_ne_pcmcia.c 		myea[j] = bus_space_read_1(nsc->sc_asict,
nsc               969 dev/pcmcia/if_ne_pcmcia.c 		    nsc->sc_asich, 0x04 + j);
nsc               973 dev/pcmcia/if_ne_pcmcia.c 	type = bus_space_read_1(nsc->sc_asict, nsc->sc_asich, 0x0f);
nsc               975 dev/pcmcia/if_ne_pcmcia.c 		nsc->sc_type = NE2000_TYPE_DL10022;
nsc               977 dev/pcmcia/if_ne_pcmcia.c 		nsc->sc_type = NE2000_TYPE_DL10019;
nsc               986 dev/pcmcia/if_ne_pcmcia.c 	struct ne2000_softc *nsc = &psc->sc_ne2000;
nsc               987 dev/pcmcia/if_ne_pcmcia.c 	struct dp8390_softc *dsc = &nsc->sc_dp8390;
nsc               785 dev/wscons/wsmux.c 	struct wsmux_softc *nsc = displaydv ? sc : NULL;
nsc               805 dev/wscons/wsmux.c 			error = wsevsrc_set_display(me, nsc->sc_displaydv);
nsc              3553 netinet/tcp_input.c 	struct syn_cache *sc, *nsc;
nsc              3558 netinet/tcp_input.c 	for (sc = LIST_FIRST(&tp->t_sc); sc != NULL; sc = nsc) {
nsc              3559 netinet/tcp_input.c 		nsc = LIST_NEXT(sc, sc_tpq);