Lines Matching defs:ch
180 register int ch; /* character from fmt */
362 rflag: ch = *fmt++;
363 reswitch: switch (ch)
400 if ((ch = *fmt++) == '*')
407 while (is_digit(ch))
409 n = 10 * n + to_digit(ch);
410 ch = *fmt++;
412 if (ch == '$')
440 n = 10 * n + to_digit(ch);
441 ch = *fmt++;
442 } while (is_digit(ch));
443 if (ch == '$')
530 *p++ = ch;
603 ch = 'x';
717 if (ch == '\0')
719 /* pretend it was %c with argument ch */
721 *cp = ch;
760 ox[1] = ch;
833 register int ch; /* character from fmt */
889 for (cp = fmt; (ch = *fmt) != '\0' && ch != '%'; fmt++)
891 if (ch == '\0')
897 rflag: ch = *fmt++;
898 reswitch: switch (ch)
910 if ((ch = *fmt++) == '*')
915 while (is_digit(ch))
917 ch = *fmt++;
927 n = 10 * n + to_digit(ch);
928 ch = *fmt++;
929 } while (is_digit(ch));
930 if (ch == '$')
1011 if (ch == '\0')