Home | History | Annotate | Download | only in Support

Lines Matching refs:UTF16

119         UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags) {
122 UTF16* target = *targetStart;
140 *target++ = (UTF16)ch; /* normal case */
155 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START);
156 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START);
167 const UTF16** sourceStart, const UTF16* sourceEnd,
170 const UTF16* source = *sourceStart;
174 const UTF16* oldSource = source; /* In case we have to back up because of target overflow. */
221 const UTF16** sourceStart, const UTF16* sourceEnd,
224 const UTF16* source = *sourceStart;
231 const UTF16* oldSource = source; /* In case we have to back up because of target overflow. */
423 UTF16** targetStart, UTF16* targetEnd, ConversionFlags flags) {
426 UTF16* target = *targetStart;
466 *target++ = (UTF16)ch; /* normal case */
483 *target++ = (UTF16)((ch >> halfShift) + UNI_SUR_HIGH_START);
484 *target++ = (UTF16)((ch & halfMask) + UNI_SUR_LOW_START);