Home
last modified time | relevance | path

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

/external/clang/test/SemaTemplate/
Dinstantiate-expr-2.cpp4 typedef char (&four_bytes)[4]; typedef
35 four_bytes operator+(X, X);
/external/python/cpython3/Objects/
Dunicodeobject.c3861 const Py_UCS4 *four_bytes; in PyUnicode_AsUnicodeAndSize() local
3879 four_bytes = PyUnicode_4BYTE_DATA(unicode); in PyUnicode_AsUnicodeAndSize()
3880 ucs4_end = four_bytes + _PyUnicode_LENGTH(unicode); in PyUnicode_AsUnicodeAndSize()
3883 for (; four_bytes < ucs4_end; ++four_bytes) { in PyUnicode_AsUnicodeAndSize()
3884 if (*four_bytes > 0xFFFF) in PyUnicode_AsUnicodeAndSize()
3898 four_bytes = PyUnicode_4BYTE_DATA(unicode); in PyUnicode_AsUnicodeAndSize()
3899 for (; four_bytes < ucs4_end; ++four_bytes, ++w) { in PyUnicode_AsUnicodeAndSize()
3900 if (*four_bytes > 0xFFFF) { in PyUnicode_AsUnicodeAndSize()
3901 assert(*four_bytes <= MAX_UNICODE); in PyUnicode_AsUnicodeAndSize()
3903 *w++ = Py_UNICODE_HIGH_SURROGATE(*four_bytes); in PyUnicode_AsUnicodeAndSize()
[all …]
/external/deqp/external/openglcts/modules/gl/
Dgl4cShadingLanguage420PackTests.cpp1302 static const unsigned char four_bytes[] = { 0xf0, 0x93, 0x83, 0x93, 0x00 }; in getUtf8Character() local
1318 result = (const GLchar*)four_bytes; in getUtf8Character()