HomeSort by relevance Sort by last modified time
    Searched full:utf8cur (Results 1 - 1 of 1) sorted by null

  /system/core/libcutils/
strdup16to8.c 74 size_t utf8Cur = utf8Len;
83 if (utf8Len < utf8Cur) /* overflow detected */
109 char* utf8cur = utf8Str; local
119 *utf8cur++ = (uic >> 12) | 0xe0;
120 *utf8cur++ = ((uic >> 6) & 0x3f) | 0x80;
121 *utf8cur++ = (uic & 0x3f) | 0x80;
123 *utf8cur++ = (uic >> 6) | 0xc0;
124 *utf8cur++ = (uic & 0x3f) | 0x80;
126 *utf8cur++ = uic;
134 *utf8cur = '\0'
    [all...]

Completed in 67 milliseconds