HomeSort by relevance Sort by last modified time
    Searched defs:utf32 (Results 1 - 10 of 10) sorted by null

  /external/svox/pico/lib/
picobase.c 98 static picoos_uint32 base_utf32_lowercase (picoos_uint32 utf32)
103 lc = utf32;
104 if (((utf32 >= 65313) && (utf32 <= 65338))) {
105 lc = (utf32 + 32);
106 } else if (((utf32 >= 66560) && (utf32 <= 66599))) {
107 lc = (utf32 + 40);
108 } else if (((utf32 >= 7680) && (utf32 <= 9423)))
1144 picobase_utf32 utf32; local
1175 picobase_utf32 utf32; local
1203 picoos_uint32 utf32; local
1222 picoos_uint32 utf32; local
    [all...]
  /external/harfbuzz_ng/test/api/
test-buffer.c 34 static const uint32_t utf32[7] = {'a', 'b', 0x20000, 'd', 'e', 'f', 'g'}; variable
49 "utf32",
73 for (i = 1; i < G_N_ELEMENTS (utf32) - 1; i++)
74 hb_buffer_add (b, utf32[i], i);
78 hb_buffer_add_utf32 (b, utf32, G_N_ELEMENTS (utf32), 1, G_N_ELEMENTS (utf32) - 2);
213 g_assert_cmphex (glyphs[i].codepoint, ==, utf32[1+i]);
221 g_assert_cmphex (glyphs[i].codepoint, ==, utf32[len-i]);
225 g_assert_cmphex (glyphs[i].codepoint, ==, utf32[1+i])
761 const uint32_t utf32[8]; member in struct:__anon9778
    [all...]
  /external/skia/src/ports/
SkTypeface_win_dw.cpp 107 const UINT32* utf32 = reinterpret_cast<const UINT32*>(chars); local
108 fDWriteFontFace->GetGlyphIndices(utf32, glyphCount, glyphs);
SkFontHost_mac.cpp 1979 const SkUnichar* utf32 = reinterpret_cast<const SkUnichar*>(chars); local
    [all...]
  /system/core/libutils/
Unicode.cpp 139 char32_t utf32 = first_char; local
144 utf32 = (utf32 << 6) + (*cur++ & 0x3F);
147 utf32 &= ~(to_ignore_mask << (6 * (num_to_read - 1)));
150 return static_cast<int32_t>(utf32);
337 char32_t utf32; local
341 utf32 = (*cur_utf16++ - 0xD800) << 10;
342 utf32 |= *cur_utf16++ - 0xDC00;
343 utf32 += 0x10000;
345 utf32 = (char32_t) *cur_utf16++
376 char32_t utf32 = 0; local
    [all...]
  /system/core/liblog/
logprint.c 774 uint32_t utf32; local
788 for (utf32 = 1, num_to_read = 1, mask = 0x40, to_ignore_mask = 0x80;
797 utf32 = (utf32 << 6) + (*cur++ & 0b00111111);
804 utf32 |= ((~to_ignore_mask) & first_char) << (6 * (num_to_read - 1));
805 if (utf32 > kUnicodeMaxCodepoint) {
  /external/icu/icu4c/source/test/cintltst/
ncnvtst.c 781 UChar32 *utf32 = (UChar32*)malloc(MAX_LENGTH*sizeof(UChar32)); local
    [all...]
ccapitst.c 2761 static const uint8_t utf32[]={ local
    [all...]
nucnvtst.c 864 /*UTF32 LE*/
867 /*UTF32 BE*/
1141 static const uint8_t utf32[]={ local
1194 static const uint8_t utf32[]={ local
    [all...]
  /external/icu/icu4c/source/test/intltest/
ustrtest.cpp 1822 static const UChar32 utf32[] = { local
    [all...]

Completed in 945 milliseconds