Lines Matching defs:converted
2569 * (converted to single byte) slides things to the left one byte,
2660 converted to non-UTF8.
2671 If the entire input string was converted, C<*is_utf8p> is set to a FALSE value,
2675 first character in the original string that wasn't converted. C<*is_utf8p> is
2681 finds that can't be converted to non-UTF-8. C<*first_non_downgradable> is
2682 set to point to that. The function returns the portion that could be converted
2685 original could not be converted, C<*lenp> will be 0, and the new string will
2686 contain just a single C<NUL>. If the entire input string was converted,
2689 Upon successful return, the number of variants in the converted portion of the
2742 /* Here, converted the whole of the input */
3010 UV converted = toUPPER_LATIN1_MOD(c);
3016 if (UVCHR_IS_INVARIANT(converted)) { /* No difference between the two for
3018 *p = (U8) converted;
3020 return converted;
3026 if (UNLIKELY(converted == LATIN_SMALL_LETTER_Y_WITH_DIAERESIS)) {
3029 converted = LATIN_CAPITAL_LETTER_Y_WITH_DIAERESIS;
3032 converted = GREEK_CAPITAL_LETTER_MU;
3051 *(p)++ = UTF8_TWO_BYTE_HI(converted);
3052 *p = UTF8_TWO_BYTE_LO(converted);
3055 return converted;
3160 U8 converted = toLOWER_LATIN1(c);
3165 if (NATIVE_BYTE_IS_INVARIANT(converted)) {
3166 *p = converted;
3172 *p = UTF8_EIGHT_BIT_HI(converted);
3173 *(p+1) = UTF8_EIGHT_BIT_LO(converted);
3177 return converted;
3202 UV converted;
3209 converted = GREEK_SMALL_LETTER_MU;
3236 converted = toLOWER_LATIN1(c);
3239 if (UVCHR_IS_INVARIANT(converted)) {
3240 *p = (U8) converted;
3244 *(p)++ = UTF8_TWO_BYTE_HI(converted);
3245 *p = UTF8_TWO_BYTE_LO(converted);
3249 return converted;
3803 * to do the conversion. If necessary, the output is converted to UTF-8. If