HomeSort by: relevance | last modified time | path
    Searched defs:esc (Results 1 - 25 of 75) sorted by relevancy

1 2 3

  /src/sys/dev/isa/
joy_ess.c 37 struct ess_softc *esc = device_private(parent); local
42 sc->sc_iot = esc->sc_joy_iot;
43 sc->sc_ioh = esc->sc_joy_ioh;
45 sc->sc_lock = &esc->sc_lock;
  /src/sys/dev/pci/
joy_eso.c 69 struct eso_softc *esc = device_private(parent); local
74 sc->sc_ioh = esc->sc_game_ioh;
75 sc->sc_iot = esc->sc_game_iot;
77 sc->sc_lock = &esc->sc_lock;
mpu_eso.c 60 struct eso_softc *esc = device_private(parent); local
66 sc.ioh = esc->sc_mpu_ioh;
67 sc.iot = esc->sc_mpu_iot;
74 struct eso_softc *esc = device_private(parent); local
79 sc->ioh = esc->sc_mpu_ioh;
80 sc->iot = esc->sc_mpu_iot;
83 sc->lock = &esc->sc_intr_lock;
opl_eso.c 71 struct eso_softc *esc = device_private(parent); local
75 sc->ioh = esc->sc_sb_ioh;
76 sc->iot = esc->sc_sb_iot;
78 sc->lock = &esc->sc_intr_lock;
joy_eap.c 104 struct eap_softc *esc = device_private(parent); local
112 sc->sc_lock = &esc->sc_lock;
  /src/sys/arch/evbarm/tsarm/
epcom_ts.c 69 struct epcom_ts_softc *esc = device_private(self); local
70 struct epcom_softc *sc = &esc->sc_epcom;
76 esc->sc_iot = sa->sa_iot;
  /src/sys/arch/sparc64/dev/
pcfiic_ebus.c 88 struct pcfiic_ebus_softc *esc = device_private(self); local
89 struct pcfiic_softc *sc = &esc->esc_sc;
159 esc->esc_ih = bus_intr_establish(sc->sc_iot, ea->ea_intr[0],
162 esc->esc_ih = NULL;
165 if (esc->esc_ih == NULL)
  /src/external/cddl/osnet/dist/lib/libdtrace/common/
dt_string.c 42 int esc = 0; local
46 if (esc) {
118 esc = 0;
121 if ((esc = c == '\\') == 0)
  /src/lib/libc/stdio/
fparseln.c 64 * that starts in *sp, is escaped by the escape character esc.
67 isescaped(const char *sp, const char *p, int esc)
76 if (esc == '\0')
80 for (ne = 0, cp = p; --cp >= sp && *cp == esc; ne++)
102 char esc, con, nl, com; local
113 esc = str[0];
135 if (*cp == com && !isescaped(ptr, cp, esc)) {
152 if (*cp == con && !isescaped(ptr, cp, esc)) {
181 if ((flags & FPARSELN_UNESCALL) != 0 && esc && buf != NULL &&
182 strchr(buf, esc) != NULL)
    [all...]
  /src/sys/dev/eisa/
depca_eisa.c 102 struct depca_eisa_softc *esc = device_private(self); local
103 struct depca_softc *sc = &esc->sc_depca;
115 esc->sc_ec = ea->ea_ec;
147 esc->sc_irq = eci.eci_irq;
148 esc->sc_ist = eci.eci_ist;
156 struct depca_eisa_softc *esc = (struct depca_eisa_softc *)sc; local
162 if (eisa_intr_map(esc->sc_ec, esc->sc_irq, &ih)) {
164 "unable to map interrupt (%d)\n", esc->sc_irq);
167 intrstr = eisa_intr_string(esc->sc_ec, ih, intrbuf, sizeof(intrbuf))
    [all...]
if_tlp_eisa.c 141 struct tulip_eisa_softc *esc = device_private(self); local
142 struct tulip_softc *sc = &esc->sc_tulip;
258 esc->sc_ih = eisa_intr_establish(ec, ih, ist, IPL_NET, tlp_intr, sc);
259 if (esc->sc_ih == NULL) {
  /src/external/bsd/mdocml/dist/
demandoc.c 137 enum mandoc_esc esc; local
160 esc = mandoc_escape(&p, NULL, NULL);
161 if (ESCAPE_ERROR == esc)
205 esc = mandoc_escape(&p, NULL, NULL);
206 if (ESCAPE_ERROR == esc)
  /src/games/quiz/
rxp.c 102 int esc, err; local
104 esc = 0;
121 if (*sp == ':' && !esc)
123 if (esc) {
126 esc = 0;
130 esc = 1;
170 esc = 0;
quiz.c 308 int esc; local
310 esc = 0;
316 esc = 1;
319 if (!esc)
323 esc = 0;
  /src/sys/arch/acorn32/podulebus/
cosc.c 113 vu_char *esc; local
139 esc = &sc->sc_iobase[COSC_ESCOFFSET_BASE];
141 rp->esc.esc_tc_low = &esc[COSC_ESCOFFSET_TCL];
142 rp->esc.esc_tc_mid = &esc[COSC_ESCOFFSET_TCM];
143 rp->esc.esc_fifo = &esc[COSC_ESCOFFSET_FIFO];
144 rp->esc.esc_command = &esc[COSC_ESCOFFSET_COMMAND]
    [all...]
  /src/sys/arch/arm/altera/
cycv_dwcmmc.c 82 struct cycv_dwcmmc_softc *esc = device_private(self); local
83 struct dwc_mmc_softc *sc = &esc->sc;
101 esc->sc_clk_biu = fdtbus_clock_get(phandle, "biu");
102 if (esc->sc_clk_biu == NULL) {
106 esc->sc_clk_ciu = fdtbus_clock_get(phandle, "ciu");
107 if (esc->sc_clk_ciu == NULL) {
112 error = clk_enable(esc->sc_clk_biu);
117 error = clk_enable(esc->sc_clk_ciu);
133 sc->sc_clock_freq = clk_get_rate(esc->sc_clk_ciu);
142 esc->sc_phandle = phandle
173 struct cycv_dwcmmc_softc *esc = device_private(sc->sc_dev); local
    [all...]
  /src/sys/arch/arm/samsung/
exynos_dwcmmc.c 91 struct exynos_dwcmmc_softc *esc = device_private(self); local
92 struct dwc_mmc_softc *sc = &esc->sc;
106 if (of_getprop_uint32(phandle, "samsung,dw-mshc-ciu-div", &esc->sc_ciu_div)) {
111 esc->sc_clk_biu = fdtbus_clock_get(phandle, "biu");
112 if (esc->sc_clk_biu == NULL) {
116 esc->sc_clk_ciu = fdtbus_clock_get(phandle, "ciu");
117 if (esc->sc_clk_ciu == NULL) {
122 error = clk_enable(esc->sc_clk_biu);
127 error = clk_enable(esc->sc_clk_ciu);
147 sc->sc_clock_freq = clk_get_rate(esc->sc_clk_ciu) / (esc->sc_ciu_div + 1)
190 struct exynos_dwcmmc_softc *esc = device_private(sc->sc_dev); local
200 struct exynos_dwcmmc_softc *esc = device_private(sc->sc_dev); local
    [all...]
  /src/sys/arch/sparc/dev/
esp_obio.c 124 struct esp_softc *esc = device_private(self); local
125 struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x;
132 esc->sc_bustag = oba->oba_bustag;
133 esc->sc_dmatag = oba->oba_dmatag;
145 esc->sc_dma = device_private(dma_dev);
146 esc->sc_dma->sc_client = sc;
151 &esc->sc_reg) != 0) {
243 bus_intr_establish(esc->sc_bustag, oba->oba_pri, IPL_BIO,
264 struct esp_softc *esc = (struct esp_softc *)sc; local
266 return bus_space_read_1(esc->sc_bustag, esc->sc_reg, reg * 4)
272 struct esp_softc *esc = (struct esp_softc *)sc; local
280 struct esp_softc *esc = (struct esp_softc *)sc; local
288 struct esp_softc *esc = (struct esp_softc *)sc; local
296 struct esp_softc *esc = (struct esp_softc *)sc; local
305 struct esp_softc *esc = (struct esp_softc *)sc; local
313 struct esp_softc *esc = (struct esp_softc *)sc; local
321 struct esp_softc *esc = (struct esp_softc *)sc; local
332 struct esp_softc *esc = (struct esp_softc *)sc; local
    [all...]
  /src/sys/arch/sun3/dev/
esp.c 126 struct esp_softc *esc = device_private(self); local
127 struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x;
139 esc->sc_bst = ca->ca_bustag;
140 if (bus_space_map(esc->sc_bst, ca->ca_paddr, ESP_REG_SIZE, 0,
141 &esc->sc_bsh) != 0) {
153 esc->sc_dma = espdmafind(device_unit(self));
154 esc->sc_dma->sc_client = sc; /* Point back to us */
256 struct esp_softc *esc = (struct esp_softc *)sc; local
258 return bus_space_read_1(esc->sc_bst, esc->sc_bsh, reg * 4)
264 struct esp_softc *esc = (struct esp_softc *)sc; local
272 struct esp_softc *esc = (struct esp_softc *)sc; local
280 struct esp_softc *esc = (struct esp_softc *)sc; local
288 struct esp_softc *esc = (struct esp_softc *)sc; local
297 struct esp_softc *esc = (struct esp_softc *)sc; local
305 struct esp_softc *esc = (struct esp_softc *)sc; local
313 struct esp_softc *esc = (struct esp_softc *)sc; local
321 struct esp_softc *esc = (struct esp_softc *)sc; local
    [all...]
  /src/sys/dev/pcmcia/
nca_pcmcia.c 113 struct nca_pcmcia_softc *esc = device_private(self); local
114 struct ncr5380_softc *sc = &esc->sc_ncr5380;
122 esc->sc_pf = pf;
185 esc->sc_state = NCA_PCMCIA_ATTACHED;
  /src/crypto/external/apache2/openssl/dist/crypto/txt_db/
txt_db.c 23 int esc = 0; local
83 esc = 0;
88 if (esc)
99 esc = (*f == '\\');
  /src/crypto/external/bsd/openssl/dist/crypto/txt_db/
txt_db.c 23 int esc = 0; local
84 esc = 0;
89 if (esc)
100 esc = (*f == '\\');
  /src/crypto/external/bsd/openssl.old/dist/crypto/txt_db/
txt_db.c 23 int esc = 0; local
84 esc = 0;
89 if (esc)
100 esc = (*f == '\\');
  /src/external/bsd/blocklist/port/
fparseln.c 58 * that starts in *sp, is escaped by the escape character esc.
61 isescaped(const char *sp, const char *p, int esc)
67 if (esc == '\0')
71 for (ne = 0, cp = p; --cp >= sp && *cp == esc; ne++)
93 char esc, con, nl, com; local
102 esc = str[0];
124 if (*cp == com && !isescaped(ptr, cp, esc)) {
141 if (*cp == con && !isescaped(ptr, cp, esc)) {
170 if ((flags & FPARSELN_UNESCALL) != 0 && esc && buf != NULL &&
171 strchr(buf, esc) != NULL)
    [all...]
  /src/sys/arch/macppc/dev/
esp.c 159 struct esp_softc *esc = device_private(self); local
160 struct ncr53c9x_softc *sc = &esc->sc_ncr53c9x;
171 esc->sc_node = ca->ca_node;
172 esc->sc_pri = ca->ca_intr[0];
173 aprint_normal(" irq %d", esc->sc_pri);
179 esc->sc_reg = mapiodev(ca->ca_baseaddr + reg[0], reg[1], false);
180 esc->sc_dmareg = mapiodev(ca->ca_baseaddr + reg[2], reg[3], false);
183 esc->sc_dmacmd = dbdma_alloc(sizeof(dbdma_command_t) * 20, NULL);
195 /* esc->sc_dma->sc_esp = esc;*/
254 struct esp_softc *esc = (struct esp_softc *)sc; local
263 struct esp_softc *esc = (struct esp_softc *)sc; local
280 struct esp_softc *esc = (struct esp_softc *)sc; local
289 struct esp_softc *esc = (struct esp_softc *)sc; local
298 struct esp_softc *esc = (struct esp_softc *)sc; local
359 struct esp_softc *esc = (struct esp_softc *)sc; local
368 struct esp_softc *esc = (struct esp_softc *)sc; local
377 struct esp_softc *esc = (struct esp_softc *)sc; local
500 struct esp_softc *esc; local
    [all...]

Completed in 38 milliseconds

1 2 3