Lines Matching defs:lenp
1038 Perl_to_uni_upper(pTHX_ UV c, U8* p, STRLEN *lenp)
1041 return to_utf8_upper(p, p, lenp);
1045 Perl_to_uni_title(pTHX_ UV c, U8* p, STRLEN *lenp)
1048 return to_utf8_title(p, p, lenp);
1052 Perl_to_uni_lower(pTHX_ UV c, U8* p, STRLEN *lenp)
1055 return to_utf8_lower(p, p, lenp);
1059 Perl_to_uni_fold(pTHX_ UV c, U8* p, STRLEN *lenp)
1062 return to_utf8_fold(p, p, lenp);
1363 =for apidoc A|UV|to_utf8_case|U8 *p|U8* ustrp|STRLEN *lenp|SV **swash|char *normal|char *special
1369 conversion result to. The "lenp" is a pointer to the length
1388 Perl_to_utf8_case(pTHX_ U8 *p, U8* ustrp, STRLEN *lenp, SV **swashp, char *normal, char *special)
1469 if (lenp)
1470 *lenp = len;
1476 =for apidoc A|UV|to_utf8_upper|U8 *p|U8 *ustrp|STRLEN *lenp
1479 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1490 Perl_to_utf8_upper(pTHX_ U8 *p, U8* ustrp, STRLEN *lenp)
1492 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
1497 =for apidoc A|UV|to_utf8_title|U8 *p|U8 *ustrp|STRLEN *lenp
1500 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1511 Perl_to_utf8_title(pTHX_ U8 *p, U8* ustrp, STRLEN *lenp)
1513 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
1518 =for apidoc A|UV|to_utf8_lower|U8 *p|U8 *ustrp|STRLEN *lenp
1521 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1532 Perl_to_utf8_lower(pTHX_ U8 *p, U8* ustrp, STRLEN *lenp)
1534 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,
1539 =for apidoc A|UV|to_utf8_fold|U8 *p|U8 *ustrp|STRLEN *lenp
1542 store that in UTF-8 in ustrp and its length in bytes in lenp. Note
1553 Perl_to_utf8_fold(pTHX_ U8 *p, U8* ustrp, STRLEN *lenp)
1555 return Perl_to_utf8_case(aTHX_ p, ustrp, lenp,