Lines Matching refs:s

643             word.s = p->buffer[out].s;  in OS_PrintServer()
711 p->buffer[in].s = word.s = (u16)((*(u16 *)(str - 1)) & 0xff00); in OS_FPutStringPrnSrv()
720 p->buffer[in].s = word.s = *(u16 *)str; in OS_FPutStringPrnSrv()
769 static void string_put_string(dst_string * p, const char *s, int n) in string_put_string() argument
777 p->cur[i] = s[i]; in string_put_string()
913 const char *s = fmt; in OS_VSNPrintfEx() local
918 while (*s) in OS_VSNPrintfEx()
920 if ((unsigned int)(((unsigned char)*s ^ 0x20) - 0xA1) < 0x3C) in OS_VSNPrintfEx()
923 string_put_char(&str, *s++); in OS_VSNPrintfEx()
924 if (*s) in OS_VSNPrintfEx()
925 string_put_char(&str, *s++); in OS_VSNPrintfEx()
927 else if (*s != '%') in OS_VSNPrintfEx()
930 string_put_char(&str, *s++); in OS_VSNPrintfEx()
953 const char *p_start = s; in OS_VSNPrintfEx()
957 switch (*++s) in OS_VSNPrintfEx()
960 if (s[-1] != ' ') in OS_VSNPrintfEx()
980 if (*s == '*') in OS_VSNPrintfEx()
982 ++s, width = va_arg(vlist, int); in OS_VSNPrintfEx()
988 while ((*s >= '0') && (*s <= '9')) in OS_VSNPrintfEx()
989 width = (width * 10) + *s++ - '0'; in OS_VSNPrintfEx()
992 if (*s == '.') in OS_VSNPrintfEx()
994 ++s, precision = 0; in OS_VSNPrintfEx()
995 if (*s == '*') in OS_VSNPrintfEx()
997 ++s, precision = va_arg(vlist, int); in OS_VSNPrintfEx()
1003 while ((*s >= '0') && (*s <= '9')) in OS_VSNPrintfEx()
1004 precision = (precision * 10) + *s++ - '0'; in OS_VSNPrintfEx()
1008 switch (*s) in OS_VSNPrintfEx()
1011 if (*++s != 'h') in OS_VSNPrintfEx()
1014 ++s, flag |= flag_h2; in OS_VSNPrintfEx()
1017 if (*++s != 'l') in OS_VSNPrintfEx()
1020 ++s, flag |= flag_l2; in OS_VSNPrintfEx()
1025 switch (*s) in OS_VSNPrintfEx()
1100 ++s; in OS_VSNPrintfEx()
1198 ++s; in OS_VSNPrintfEx()
1261 ++s; in OS_VSNPrintfEx()
1277 ++s; in OS_VSNPrintfEx()
1281 if (p_start + 1 != s) in OS_VSNPrintfEx()
1283 string_put_char(&str, *s++); in OS_VSNPrintfEx()
1290 string_put_string(&str, p_start, s - p_start); in OS_VSNPrintfEx()
1446 ++s; in OS_VSNPrintfEx()