Searched refs:sourceCodeUnitCount (Results 1 – 2 of 2) sorted by relevance
/haiku/src/system/kernel/ |
H A D | convertutf.cpp | 59 utf16_to_utf8(const uint16* source, size_t sourceCodeUnitCount, char* target, in utf16_to_utf8() argument 62 if (source == NULL || sourceCodeUnitCount == 0 in utf16_to_utf8() 69 for (size_t i = 0; i < sourceCodeUnitCount; i++) { in utf16_to_utf8() 80 if (sourceCodeUnitCount <= i + 1) { in utf16_to_utf8() 121 utf16le_to_utf8(const uint16* source, size_t sourceCodeUnitCount, in utf16le_to_utf8() argument 124 return utf16_to_utf8(source, sourceCodeUnitCount, target, targetLength, in utf16le_to_utf8() 130 utf16be_to_utf8(const uint16* source, size_t sourceCodeUnitCount, in utf16be_to_utf8() argument 133 return utf16_to_utf8(source, sourceCodeUnitCount, target, targetLength, in utf16be_to_utf8()
|
/haiku/headers/private/system/ |
H A D | convertutf.h | 18 ssize_t utf16le_to_utf8(const uint16* source, size_t sourceCodeUnitCount, 21 ssize_t utf16be_to_utf8(const uint16* source, size_t sourceCodeUnitCount,
|