Lines Matching defs:from
14 * license is obtained from Japan Network Information Center ("JPNIC"),
32 * derived from this Software without specific prior written approval of
96 static idn_result_t normalizer_formkc(const unsigned long *from,
98 static idn_result_t normalizer_formkc_v320(const unsigned long *from,
249 idn_normalizer_normalize(idn_normalizer_t ctx, const unsigned long *from,
260 assert(ctx != NULL && from != NULL && to != NULL);
262 TRACE(("idn_normalizer_normalize(from=\"%s\", tolen=%d)\n",
263 idn__debug_ucs4xstring(from, 50), (int)tolen));
266 if (tolen < idn_ucs4_strlen(from) + 1) {
270 idn_ucs4_strcpy(to, from);
278 src = (void *)from;
279 dstlen = idn_ucs4_strlen(from) + 1;
425 normalizer_formkc(const unsigned long *from, unsigned long *to, size_t tolen) {
427 return (idn__unormalize_formkc(vcur, from, to, tolen));
435 normalizer_formkc_v320(const unsigned long *from, unsigned long *to,
438 return (idn__unormalize_formkc(v320, from, to, tolen));