Home
last modified time | relevance | path

Searched refs:targ (Results 1 – 5 of 5) sorted by relevance

/qemu/chardev/
H A Dchar-serial.c204 int *targ = (int *)arg; in tty_serial_ioctl() local
206 *targ = 0; in tty_serial_ioctl()
208 *targ |= CHR_TIOCM_CTS; in tty_serial_ioctl()
217 *targ |= CHR_TIOCM_RI; in tty_serial_ioctl()
230 int targ = 0; in tty_serial_ioctl() local
235 targ |= TIOCM_CTS; in tty_serial_ioctl()
238 targ |= TIOCM_CAR; in tty_serial_ioctl()
241 targ |= TIOCM_DSR; in tty_serial_ioctl()
244 targ |= TIOCM_RI; in tty_serial_ioctl()
247 targ |= TIOCM_DTR; in tty_serial_ioctl()
[all …]
H A Dmsmouse.c186 int *targ = (int *)arg; in msmouse_ioctl() local
238 *targ = mouse->tiocm; in msmouse_ioctl()
/qemu/libdecnumber/dpd/
H A Ddecimal32.c91 uInt targ=0; /* target 32-bit */ in decimal32FromNumber() local
112 if (dn->bits&DECINF) targ=DECIMAL_Inf<<24; in decimal32FromNumber()
116 decDigitsToDPD(dn, &targ, 0); in decimal32FromNumber()
118 if (dn->bits&DECNAN) targ|=DECIMAL_NaN<<24; in decimal32FromNumber()
119 else targ|=DECIMAL_sNaN<<24; in decimal32FromNumber()
153 targ=BIN2DPD[dn->lsu[0]]; in decimal32FromNumber()
158 decDigitsToDPD(dn, &targ, pad); in decimal32FromNumber()
160 msd=targ>>20; in decimal32FromNumber()
161 targ&=0x000fffff; in decimal32FromNumber()
168 targ|=comb<<26; /* add combination field .. */ in decimal32FromNumber()
[all …]
H A Ddecimal64.c618 void decDigitsToDPD(const decNumber *dn, uInt *targ, Int shift) { in decDigitsToDPD() argument
623 uInt *uout=targ; /* -> current output uInt */ in decDigitsToDPD()
/qemu/libdecnumber/
H A DdecNumber.c7814 static Flag decBiStr(const char *targ, const char *str1, const char *str2) { argument
7815 for (;;targ++, str1++, str2++) {
7816 if (*targ!=*str1 && *targ!=*str2) return 0;
7818 if (*targ=='\0') break;