Home
last modified time | relevance | path

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

/system/core/libutils/
DUnicode.cpp130 static inline int32_t utf32_at_internal(const char* cur, size_t *num_read) in utf32_at_internal() argument
134 *num_read = 1; in utf32_at_internal()
150 *num_read = num_to_read; in utf32_at_internal()
163 size_t num_read; in utf32_from_utf8_at() local
164 int32_t ret = utf32_at_internal(src + index, &num_read); in utf32_from_utf8_at()
166 *next_index = index + num_read; in utf32_from_utf8_at()
484 size_t num_read; in utf8_to_utf32() local
485 *cur_utf32++ = static_cast<char32_t>(utf32_at_internal(cur, &num_read)); in utf8_to_utf32()
486 cur += num_read; in utf8_to_utf32()