Home
last modified time | relevance | path

Searched refs:xc (Results 1 – 25 of 91) sorted by relevance

1234

/trueos/gnu/usr.bin/rcs/lib/
HDrcsfcmp.c159 register int xc, uc; local
182 Igeteof_(xfp, xc, xeof=true;)
186 if (xc != uc)
192 xc = 0;
198 if (xc != KDELIM) {
200 Igeteof_(xfp, xc, xeof=true;)
208 Igeteof_(xfp, xc, xeof=true;)
212 if (xc != uc)
214 switch (xc) {
218 *tp++ = xc;
[all …]
/trueos/contrib/gdtoa/
HDsum.c42 ULong carry, *xc, *xa, *xb, *xe, y; local
55 xc = c->x;
56 xe = xc + b->wds;
63 Storeinc(xc, z, y);
65 while(xc < xe);
67 while(xc < xe) {
72 Storeinc(xc, z, y);
78 *xc++ = y & 0xffff;
80 while(xc < xe);
82 while(xc < xe) {
[all …]
HDmisc.c274 ULong *x, *xa, *xae, *xb, *xbe, *xc, *xc0; local
308 xc = xc0;
311 z = *x++ * (ULLong)y + *xc + carry;
313 *xc++ = z & 0xffffffffUL;
316 *xc = carry;
324 xc = xc0;
327 z = (*x & 0xffff) * y + (*xc & 0xffff) + carry;
329 z2 = (*x++ >> 16) * y + (*xc >> 16) + carry;
331 Storeinc(xc, z2, z);
334 *xc = carry;
[all …]
/trueos/lib/libvgl/
HDsimple.c422 set4pixels(VGLBitmap *object, int x, int y, int xc, int yc, u_long color) in set4pixels() argument
425 VGLSetXY(object, xc+x, yc+y, color); in set4pixels()
426 VGLSetXY(object, xc-x, yc+y, color); in set4pixels()
428 VGLSetXY(object, xc+x, yc-y, color); in set4pixels()
429 VGLSetXY(object, xc-x, yc-y, color); in set4pixels()
433 VGLSetXY(object, xc, yc+y, color); in set4pixels()
435 VGLSetXY(object, xc, yc-y, color); in set4pixels()
440 VGLEllipse(VGLBitmap *object, int xc, int yc, int a, int b, u_long color) in VGLEllipse() argument
446 set4pixels(object, x, y, xc, yc, color); in VGLEllipse()
454 set4pixels(object, x, y, xc, yc, color); in VGLEllipse()
[all …]
HDvgl.h140 void VGLEllipse(VGLBitmap *object, int xc, int yc, int a, int b, u_long color);
141 void VGLFilledEllipse(VGLBitmap *object, int xc, int yc, int a, int b, u_long color);
/trueos/sys/dev/uart/
HDuart_bus.h172 int ptr, xc; in uart_rx_get() local
177 xc = sc->sc_rxbuf[ptr++]; in uart_rx_get()
179 return (xc); in uart_rx_get()
205 uart_rx_put(struct uart_softc *sc, int xc) in uart_rx_put() argument
212 sc->sc_rxbuf[sc->sc_rxput] = xc; in uart_rx_put()
HDuart_tty.c303 int c, err = 0, pend, sig, xc; in uart_tty_intr() local
317 xc = uart_rx_peek(sc); in uart_tty_intr()
318 c = xc & 0xff; in uart_tty_intr()
319 if (xc & UART_STAT_FRAMERR) in uart_tty_intr()
321 if (xc & UART_STAT_OVERRUN) in uart_tty_intr()
323 if (xc & UART_STAT_PARERR) in uart_tty_intr()
HDuart_dev_imx.c525 int xc, out; in imx_uart_bus_receive() local
542 xc = GETREG(bas, REG(URXD)); in imx_uart_bus_receive()
543 out = xc & 0x000000ff; in imx_uart_bus_receive()
544 if (xc & FLD(URXD, FRMERR)) in imx_uart_bus_receive()
546 if (xc & FLD(URXD, PRERR)) in imx_uart_bus_receive()
548 if (xc & FLD(URXD, OVRRUN)) in imx_uart_bus_receive()
550 if (xc & FLD(URXD, BRK)) in imx_uart_bus_receive()
HDuart_dev_pl011.c410 uint32_t ints, xc; in uart_pl011_bus_receive() local
422 xc = __uart_getreg(bas, UART_DR); in uart_pl011_bus_receive()
423 rx = xc & 0xff; in uart_pl011_bus_receive()
425 if (xc & DR_FE) in uart_pl011_bus_receive()
427 if (xc & DR_PE) in uart_pl011_bus_receive()
HDuart_dev_z8530.c533 int xc; in z8530_bus_receive() local
544 xc = uart_getreg(bas, REG_DATA); in z8530_bus_receive()
548 xc |= UART_STAT_FRAMERR; in z8530_bus_receive()
550 xc |= UART_STAT_PARERR; in z8530_bus_receive()
552 xc |= UART_STAT_OVERRUN; in z8530_bus_receive()
553 uart_rx_put(sc, xc); in z8530_bus_receive()
HDuart_dev_sab82532.c627 int i, rbcl, xc; in sab82532_bus_receive() local
641 xc = uart_getreg(bas, SAB_RFIFO); in sab82532_bus_receive()
644 xc |= UART_STAT_FRAMERR; in sab82532_bus_receive()
646 xc |= UART_STAT_PARERR; in sab82532_bus_receive()
647 uart_rx_put(sc, xc); in sab82532_bus_receive()
HDuart_dev_lpc.c822 int xc; in lpc_ns8250_bus_receive() local
833 xc = uart_getreg(bas, REG_DATA); in lpc_ns8250_bus_receive()
835 xc |= UART_STAT_FRAMERR; in lpc_ns8250_bus_receive()
837 xc |= UART_STAT_PARERR; in lpc_ns8250_bus_receive()
838 uart_rx_put(sc, xc); in lpc_ns8250_bus_receive()
/trueos/crypto/openssl/crypto/sha/
HDsha_locl.h163 # define BODY_16_19(i,a,b,c,d,e,f,xi,xa,xb,xc,xd) \ argument
164 Xupdate(f,xi,xa,xb,xc,xd); \
168 # define BODY_20_31(i,a,b,c,d,e,f,xi,xa,xb,xc,xd) \ argument
169 Xupdate(f,xi,xa,xb,xc,xd); \
173 # define BODY_32_39(i,a,b,c,d,e,f,xa,xb,xc,xd) \ argument
174 Xupdate(f,xa,xa,xb,xc,xd); \
178 # define BODY_40_59(i,a,b,c,d,e,f,xa,xb,xc,xd) \ argument
179 Xupdate(f,xa,xa,xb,xc,xd); \
183 # define BODY_60_79(i,a,b,c,d,e,f,xa,xb,xc,xd) \ argument
184 Xupdate(f,xa,xa,xb,xc,xd); \
[all …]
/trueos/sys/mips/adm5120/
HDuart_dev_adm5120.c386 int xc; in adm5120_uart_bus_receive() local
397 xc = 0; in adm5120_uart_bus_receive()
400 xc |= UART_STAT_FRAMERR; in adm5120_uart_bus_receive()
402 xc |= UART_STAT_PARERR; in adm5120_uart_bus_receive()
404 xc |= UART_STAT_OVERRUN; in adm5120_uart_bus_receive()
405 xc |= uart_getreg(bas, UART_DR_REG); in adm5120_uart_bus_receive()
407 uart_rx_put(sc, xc); in adm5120_uart_bus_receive()
/trueos/sys/mips/rt305x/
HDuart_dev_rt305x.c455 int xc; in rt305x_uart_bus_receive() local
466 xc = 0; in rt305x_uart_bus_receive()
467 xc = uart_getreg(bas, UART_RX_REG); in rt305x_uart_bus_receive()
469 xc |= UART_STAT_FRAMERR; in rt305x_uart_bus_receive()
471 xc |= UART_STAT_PARERR; in rt305x_uart_bus_receive()
473 xc |= UART_STAT_OVERRUN; in rt305x_uart_bus_receive()
475 uart_rx_put(sc, xc); in rt305x_uart_bus_receive()
/trueos/contrib/netbsd-tests/ipf/expected/
HDbpf11 pass in bpf-v4 { "0x20 0 0 0xc 0x15 0 0x1 0x1010101 0x6 0 0 0x60 0x6 0 0 0" }
2 pass out bpf-v4 { "0 0 0 0 0x20 0 0 0xc 0x15 0 0x1 0x1010101 0x6 0 0 0x1 0x6 0 0 0" }
/trueos/contrib/netbsd-tests/ipf/regress/
HDbpf-f11 pass in bpf-v4 { "0x20 0 0 0xc 0x15 0 0x1 0x1010101 0x6 0 0 0x60 0x6 0 0 0" }
2 pass out bpf-v4 { "0x20 0 0 0xc 0x15 0 0x1 0x1010101 0x6 0 0 0x60 0x6 0 0 0" }
HDbpf11 pass in bpf-v4 { "0x20 0 0 0xc 0x15 0 0x1 0x1010101 0x6 0 0 0x60 0x6 0 0 0" }
/trueos/lib/libmd/
HDsha_locl.h219 #define BODY_16_19(i,a,b,c,d,e,f,xa,xb,xc,xd) \ argument
220 Xupdate(f,i,xa,xb,xc,xd); \
224 #define BODY_20_31(i,a,b,c,d,e,f,xa,xb,xc,xd) \ argument
225 Xupdate(f,i,xa,xb,xc,xd); \
/trueos/contrib/sendmail/libmilter/
HDsmfi.c650 const char *xc; local
669 xc = xcode;
674 xc = "4.0.0";
676 xc = "5.0.0";
680 len += strlen(xc) + 1;
710 (void) sm_strlcpyn(buf, len, 3, rcode, args == 1 ? " " : "-", xc);
712 xc, " ");
/trueos/cddl/contrib/opensolaris/lib/libdtrace/common/
HDdt_provider.c247 int i, nc, xc; in dt_probe_discover() local
275 xc = i; in dt_probe_discover()
286 if (xc == 0 && nc == 0 && in dt_probe_discover()
290 xc = nc; in dt_probe_discover()
298 xargs = dt_probe_alloc_args(pvp, xc); in dt_probe_discover()
301 if ((xc != 0 && xargs == NULL) || (nc != 0 && nargs == NULL)) in dt_probe_discover()
314 nargs, nc, xargs, xc)) == NULL) { in dt_probe_discover()
326 for (adp = adv, i = 0; i < xc; i++, adp++) { in dt_probe_discover()
/trueos/gnu/usr.bin/binutils/ld/
HDgenscripts.sh152 COMBRELOC=ldscripts/${EMULATION_NAME}.xc.tmp
156 ) | sed -e '/^ *$/d;s/[ ]*$//' > ldscripts/${EMULATION_NAME}.xc
/trueos/sys/mips/cavium/
HDuart_dev_oct16550.c721 int xc; in oct16550_bus_receive() local
733 xc = uart_getreg(bas, REG_DATA); in oct16550_bus_receive()
735 xc |= UART_STAT_FRAMERR; in oct16550_bus_receive()
737 xc |= UART_STAT_PARERR; in oct16550_bus_receive()
738 uart_rx_put(sc, xc); in oct16550_bus_receive()
/trueos/sys/gnu/dts/arm/
HDda850.dtsi78 0xc 0x00000002 0x0000000f
84 0xc 0x00000020 0x000000f0
148 0xc 0x88888888 0xffffffff
/trueos/contrib/binutils/ld/
HDgenscripts.sh290 COMBRELOC=ldscripts/${EMULATION_NAME}.xc.tmp
294 ) | sed -e '/^ *$/d;s/[ ]*$//' > ldscripts/${EMULATION_NAME}.xc

1234