Lines Matching defs:ps
30 * c16rtomb(s, c16, ps)
34 * locale, using multibyte encoding state ps.
98 c16rtomb(char *restrict s, char16_t c16, mbstate_t *restrict ps)
101 return c16rtomb_l(s, c16, ps, _current_locale());
105 c16rtomb_l(char *restrict s, char16_t c16, mbstate_t *restrict ps,
114 * `If ps is a null pointer, each function uses its own
120 * these functions with a null pointer for ps.'
122 if (ps == NULL)
123 ps = &psbuf;
129 * c16rtomb(buf, L'\0', ps)
141 S = (struct c16rtombstate *)(void *)ps;