Home
last modified time | relevance | path

Searched refs:sourceCodeUnitCount (Results 1 – 2 of 2) sorted by relevance

/haiku/src/system/kernel/
H A Dconvertutf.cpp59 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 Dconvertutf.h18 ssize_t utf16le_to_utf8(const uint16* source, size_t sourceCodeUnitCount,
21 ssize_t utf16be_to_utf8(const uint16* source, size_t sourceCodeUnitCount,