• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/gnulib-lib/

Lines Matching refs:puc

129 /* Similar to mbtowc(), except that puc and s must not be NULL, n must be > 0,
137 u8_mbtouc_unsafe (ucs4_t *puc, const uint8_t *s, size_t n);
140 u8_mbtouc_unsafe_aux (ucs4_t *puc, const uint8_t *s, size_t n);
142 u8_mbtouc_unsafe (ucs4_t *puc, const uint8_t *s, size_t n)
148 *puc = c;
152 return u8_mbtouc_unsafe_aux (puc, s, n);
160 u16_mbtouc_unsafe (ucs4_t *puc, const uint16_t *s, size_t n);
163 u16_mbtouc_unsafe_aux (ucs4_t *puc, const uint16_t *s, size_t n);
165 u16_mbtouc_unsafe (ucs4_t *puc, const uint16_t *s, size_t n)
171 *puc = c;
175 return u16_mbtouc_unsafe_aux (puc, s, n);
183 u32_mbtouc_unsafe (ucs4_t *puc, const uint32_t *s, size_t n);
186 u32_mbtouc_unsafe (ucs4_t *puc, const uint32_t *s, size_t n)
193 *puc = c;
197 *puc = 0xfffd;
207 u8_mbtouc (ucs4_t *puc, const uint8_t *s, size_t n);
210 u8_mbtouc_aux (ucs4_t *puc, const uint8_t *s, size_t n);
212 u8_mbtouc (ucs4_t *puc, const uint8_t *s, size_t n)
218 *puc = c;
222 return u8_mbtouc_aux (puc, s, n);
230 u16_mbtouc (ucs4_t *puc, const uint16_t *s, size_t n);
233 u16_mbtouc_aux (ucs4_t *puc, const uint16_t *s, size_t n);
235 u16_mbtouc (ucs4_t *puc, const uint16_t *s, size_t n)
241 *puc = c;
245 return u16_mbtouc_aux (puc, s, n);
253 u32_mbtouc (ucs4_t *puc, const uint32_t *s, size_t n);
256 u32_mbtouc (ucs4_t *puc, const uint32_t *s, size_t n)
261 *puc = c;
264 *puc = 0xfffd;
280 u8_mbtoucr (ucs4_t *puc, const uint8_t *s, size_t n);
285 u16_mbtoucr (ucs4_t *puc, const uint16_t *s, size_t n);
290 u32_mbtoucr (ucs4_t *puc, const uint32_t *s, size_t n);
448 u8_strmbtouc (ucs4_t *puc, const uint8_t *s);
450 u16_strmbtouc (ucs4_t *puc, const uint16_t *s);
452 u32_strmbtouc (ucs4_t *puc, const uint32_t *s);
458 u8_next (ucs4_t *puc, const uint8_t *s);
460 u16_next (ucs4_t *puc, const uint16_t *s);
462 u32_next (ucs4_t *puc, const uint32_t *s);
468 u8_prev (ucs4_t *puc, const uint8_t *s, const uint8_t *start);
470 u16_prev (ucs4_t *puc, const uint16_t *s, const uint16_t *start);
472 u32_prev (ucs4_t *puc, const uint32_t *s, const uint32_t *start);