HomeSort by: relevance | last modified time | path
    Searched refs:SC (Results 1 - 22 of 22) sorted by relevancy

  /src/sys/arch/sgimips/dev/
scnvar.h 77 #define SCN_OP_BIS(SC,VAL) ((SC)->sc_duart->base[DU_OPSET] = (VAL))
78 #define SCN_OP_BIC(SC,VAL) ((SC)->sc_duart->base[DU_OPCLR] = (VAL))
80 #define SCN_DCD(SC) (((SC)->sc_duart->base[DU_IP] & (SC)->sc_ip_dcd) == 0)
91 struct scn_softc *sc; member in struct:duart::chan
scn.c 213 static void scn_setchip(struct scn_softc *sc);
407 scn_setchip(struct scn_softc *sc)
413 if (sc->sc_tty && (sc->sc_tty->t_state & TS_BUSY)) {
414 sc->sc_heldchanges = 1;
418 chan = sc->sc_channel;
419 dp = sc->sc_duart;
450 sc->sc_chbase[CH_CR] = CR_CMD_MR0;
455 sc->sc_chbase[CH_CR] = CR_CMD_MR0;
457 sc->sc_chbase[CH_MR] = dp->chan[chan].mr0
608 struct scn_softc *sc; local in function:scn_config
801 struct scn_softc *sc; local in function:scn_attach
1076 struct scn_softc *sc; local in function:scnopen
1166 struct scn_softc *sc = SOFTC(unit); local in function:scnclose
1207 struct scn_softc *sc = SOFTC(DEV_UNIT(dev)); local in function:scnread
1216 struct scn_softc *sc = SOFTC(DEV_UNIT(dev)); local in function:scnwrite
1225 struct scn_softc *sc = SOFTC(DEV_UNIT(dev)); local in function:scnpoll
1234 struct scn_softc *sc = SOFTC(DEV_UNIT(dev)); local in function:scntty
1286 struct scn_softc *sc = SOFTC(unit); local in function:scnhwiflow
1499 struct scn_softc *sc; local in function:scnsoft
1606 struct scn_softc *sc = SOFTC(unit); local in function:scnioctl
1745 struct scn_softc *sc = SOFTC(unit); local in function:scnparam
1817 struct scn_softc *sc = SOFTC(unit); local in function:scnstart
    [all...]
  /src/lib/libc/arch/sparc/gen/
divrem.m4 92 define(SC, `%g5')
170 ! The number of bits in the result here is N*ITER+SC, where SC <= N.
176 mov 1, SC
181 ! Now compute SC.
184 inc SC
193 dec SC
205 ! dec SC
215 deccc SC
235 deccc SC
    [all...]
  /src/sys/lib/libkern/arch/sparc/
divrem.m4 92 define(SC, `%g5')
170 ! The number of bits in the result here is N*ITER+SC, where SC <= N.
176 mov 1, SC
181 ! Now compute SC.
184 inc SC
193 dec SC
205 ! dec SC
215 deccc SC
235 deccc SC
    [all...]
  /src/sys/lib/libkern/arch/sparc64/
divrem.m4 96 define(SC, `%g5')
171 ! The number of bits in the result here is N*ITER+SC, where SC <= N.
177 mov 1, SC
182 ! Now compute SC.
185 inc SC
194 dec SC
206 ! dec SC
216 deccc SC
236 deccc SC
    [all...]
  /src/sys/dev/mscp/
mscp_subr.c 794 #define SC(m) sizeof (m) / sizeof (m[0]), m
795 {"success", SC(succ_msgs)},
796 {"invalid command", SC(icmd_msgs)},
798 {"unit offline", SC(offl_msgs)},
800 {"media format error", SC(media_fmt_msgs)},
801 {"write protected", SC(wrprot_msgs)},
803 {"data error", SC(data_msgs)},
804 {"host buffer access error", SC(host_buffer_msgs)},
805 {"controller error", SC(cntlr_msgs)},
806 {"drive error", SC(drive_msgs)}
818 int c, sc; local in function:mscp_printevent
    [all...]
  /src/usr.sbin/lpr/common_source/
lp.h 70 extern long SC; /* suppress multiple copies */
common.c 101 long SC; /* suppress multiple copies */
  /src/sys/arch/sun3/dev/
xd.c 107 * XDC_TWAIT: add iorq "N" to tail of SC's wait queue
109 #define XDC_TWAIT(SC, N) \
111 (SC)->waitq[(SC)->waitend] = (N); \
112 (SC)->waitend = ((SC)->waitend + 1) % XDC_MAXIOPB; \
113 (SC)->nwait++; \
117 * XDC_HWAIT: add iorq "N" to head of SC's wait queue
119 #define XDC_HWAIT(SC, N) \
121 (SC)->waithead = ((SC)->waithead == 0) ?
    [all...]
dma.c 87 struct dma_softc *sc = device_private(self); local in function:dmaattach
91 sc->sc_dev = self;
95 sc->intr = espdmaintr;
96 sc->setup = dma_setup;
97 sc->reset = dma_reset;
103 sc->sc_bst = ca->ca_bustag;
104 sc->sc_dmatag = ca->ca_dmatag;
105 if (bus_space_map(sc->sc_bst, ca->ca_paddr, DMAREG_SIZE,
106 0, &sc->sc_bsh) != 0) {
113 if (bus_dmamap_create(sc->sc_dmatag, MAXPHYS, 1, MAXPHYS
    [all...]
xy.c 125 #define XYC_DONE(SC,ER) \
128 (ER) = (SC)->ciorq->errno; \
129 (SC)->ciorq->mode = XY_SUB_FREE; \
130 wakeup((SC)->ciorq); \
  /src/sys/dev/vme/
xd.c 96 * XDC_TWAIT: add iorq "N" to tail of SC's wait queue
98 #define XDC_TWAIT(SC, N) { \
99 (SC)->waitq[(SC)->waitend] = (N); \
100 (SC)->waitend = ((SC)->waitend + 1) % XDC_MAXIOPB; \
101 (SC)->nwait++; \
105 * XDC_HWAIT: add iorq "N" to head of SC's wait queue
107 #define XDC_HWAIT(SC, N) { \
108 (SC)->waithead = ((SC)->waithead == 0) ?
    [all...]
xy.c 114 #define XYC_DONE(SC,ER) { \
116 (ER) = (SC)->ciorq->errnum; \
117 (SC)->ciorq->mode = XY_SUB_FREE; \
118 wakeup((SC)->ciorq); \
  /src/sys/external/gpl2/dts/dist/arch/arm/boot/dts/
imx28-sps1.dts 10 model = "SchulerControl GmbH, SC SPS 1";
  /src/usr.sbin/lpr/lpr/
lpr.c 262 if (SC && ncopies > 1)
686 SC = (cgetcap(bp, "sc", ':') != NULL);
  /src/libexec/ld.aout_so/
ld.so.arm.uue 23 M#L",X1```^(`P(SA(#`#X@/`C.$&`%SC`P``&@`PDN4!,(/@`#""Y0"H&^DD
24 M`%SC^?__"@0`7.,`J!L9]O__ZDQ$7TQ)0E)!4EE?4$%42`!,1%]04D5,3T%$
185 M"^4``%SC(0``"E"06^7_0`GB`#"<Y4P@&^63`@+@6(`;Y2R0&^4"$);G`0#8
188 MP8@0``!<X]___QH``%SC*0``"@0PU^4+`%/C"```&C20&^40,+?E`%")Y5B`
297 M3.(*H(_@/#"?Y0,@FN<`0)+E``!4XS"L&PDL4)_E'#"4Y0S`T^4"`!SC!1":
550 M%0``6>,"```:,`!4XPJ0H!,(D*`#.,`;Y0D0H.$``%SC`H'@`P*!H!,(`*#A
698 MXW4H`.L`P*#C!<&'YPQ0H.$%09?G``!4XQ@```H``%SC!@``"JC!"^4(`(3B
713 MH.,X<`OE+,`;Y0,`'.,$```:*'`;Y0,`%^,`P*`3`<"@`SC`"^4L<!OEE`<'
735 M;'`+Y0%@5N+Y__\:&P``ZCC`&^4``%SC#```"@0PF.1L<!OE!#"'Y&QP"^4%
741 M&^4``%SC!P``"@0PF.1L<!OE!#"'Y&QP"^4\P!OE#`!8X?C__SH&``#J`3#
    [all...]
  /src/sys/dev/ic/
lsi64854.c 85 lsi64854_attach(struct lsi64854_softc *sc)
90 switch (sc->sc_channel) {
92 sc->intr = lsi64854_scsi_intr;
93 sc->setup = lsi64854_setup;
96 sc->intr = lsi64854_enet_intr;
99 sc->setup = lsi64854_setup_pp;
104 sc->reset = lsi64854_reset;
107 if (bus_dmamap_create(sc->sc_dmatag, MAX_DMA_SZ, 1, MAX_DMA_SZ,
108 0, BUS_DMA_WAITOK, &sc->sc_dmamap) != 0) {
113 csr = L64854_GCSR(sc);
373 struct lsi64854_softc *sc = arg; local in function:lsi64854_scsi_intr
503 struct lsi64854_softc *sc = arg; local in function:lsi64854_enet_intr
611 struct lsi64854_softc *sc = arg; local in function:lsi64854_pp_intr
    [all...]
  /src/sys/dev/pckbport/
synaptics.c 134 #define DPRINTF(LEVEL, SC, FMT, ARGS...) do \
138 container_of((SC), struct pms_softc, u.synaptics); \
351 struct synaptics_softc *sc = &psc->u.synaptics; local in function:pms_synaptics_probe_extended
355 DPRINTF(10, sc,
356 "synaptics_probe: Capabilities 0x%04x.\n", sc->caps);
357 if (sc->caps & SYNAPTICS_CAP_PASSTHROUGH)
358 sc->flags |= SYN_FLAG_HAS_PASSTHROUGH;
360 if (sc->caps & SYNAPTICS_CAP_PALMDETECT)
361 sc->flags |= SYN_FLAG_HAS_PALM_DETECT;
363 if (sc->caps & SYNAPTICS_CAP_MULTIDETECT
498 struct synaptics_softc *sc = &psc->u.synaptics; local in function:pms_synaptics_probe_init
647 struct synaptics_softc *sc = &psc->u.synaptics; local in function:pms_synaptics_enable
1198 struct synaptics_softc *sc = &psc->u.synaptics; local in function:pms_synaptics_get_fingers
1268 struct synaptics_softc *sc = &psc->u.synaptics; local in function:pms_synaptics_parse
1777 struct synaptics_softc *sc = &psc->u.synaptics; local in function:pms_synaptics_input
2258 struct synaptics_softc *sc = &psc->u.synaptics; local in function:pms_synaptics_process_packet
    [all...]
  /src/sys/arch/mips/mips/
bds_emul.S 150 PTR_WORD bcemul_sigill # 070 SC
  /src/sys/arch/m68k/060sp/dist/
fplsp.s 6908 # 2.5 Create the values Sc = 2^M and #
6957 # 6.7 Return ans := Sc * ans. Exit. #
7106 set SC,FP_SCR0
7339 mov.w %d1,SC(%a6) # SC is 2^(M) in extended
7340 mov.l &0x80000000,SC+4(%a6)
7341 clr.l SC+8(%a6)
7401 fmul.x SC(%a6),%fp0
7414 mov.l &0x80010000,SC(%a6) # SC is -2^(-16382
    [all...]
fpsp.s 7014 # 2.5 Create the values Sc = 2^M and #
7063 # 6.7 Return ans := Sc * ans. Exit. #
7212 set SC,FP_SCR0
7445 mov.w %d1,SC(%a6) # SC is 2^(M) in extended
7446 mov.l &0x80000000,SC+4(%a6)
7447 clr.l SC+8(%a6)
7507 fmul.x SC(%a6),%fp0
7520 mov.l &0x80010000,SC(%a6) # SC is -2^(-16382
    [all...]
  /src/share/terminfo/
terminfo 396 csr=\E[%i%p1%d;%p2%dr, rc=\E8, sc=\E7,
503 il=\E[%p1%dL, rc=\E7, rmam=\E[?7l, sc=\E7, smam=\E[?7h,
562 # (Added vt100 <rc>,<sc> to quiet a tic warning --esr)
572 rmir=\E[4l, rmso=\E[m, rmul=\E[m, sc=\E7, smir=\E[4h,
703 rmam=\E[?7l, sc=\E[s, smam=\E[?7h, use=ansi+cpr,
843 rs2=\Ev\Eq\Ee, sc=\Ej, sgr0=\Eq, smso=\Ep,
866 sc=\E7,
941 ri=\EI, rmcup=, rmso=\Eq, rs1=\Ez_\Eb@\EcA, sc=\Ej, sgr0=\Eq,
963 rmul=\E[24m, rs1=\Ec, sc=\E7, setab=\E[4%p1%dm,
1017 rmul=\E[24m, rs1=\Ec\E]R, sc=\E7
    [all...]

Completed in 98 milliseconds