Lines Matching defs:pc8
104 mbrtoc8(char8_t *restrict pc8, const char *restrict s, size_t n,
108 return mbrtoc8_l(pc8, s, n, ps, _current_locale());
112 mbrtoc8_l(char8_t *restrict pc8, const char *restrict s, size_t n,
138 * In this case, the values of the parameters pc8 and n are
142 pc8 = NULL;
157 if (pc8)
158 *pc8 = S->buf[sizeof(S->buf) - S->nleft];
171 if (pc8)
172 *pc8 = 0;
192 if (pc8)
193 *pc8 = c32;
197 if (pc8)
198 *pc8 = 0xc0 | __SHIFTOUT(c32, __BITS(10,6));
203 if (pc8)
204 *pc8 = 0xe0 | __SHIFTOUT(c32, __BITS(15,12));
210 if (pc8)
211 *pc8 = 0xf0 | __SHIFTOUT(c32, __BITS(20,18));