Home
last modified time | relevance | path

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

/external/skqp/tests/
DUnicodeTest.cpp62 SkUnichar uni2[N]; in DEF_TEST() local
63 SkFontPriv::GlyphsToUnichars(font, glyphs, N, uni2); in DEF_TEST()
64 REPORTER_ASSERT(reporter, memcmp(uni, uni2, sizeof(uni)) == 0); in DEF_TEST()
/external/skia/tests/
DUnicodeTest.cpp62 SkUnichar uni2[N]; in DEF_TEST() local
63 SkFontPriv::GlyphsToUnichars(font, glyphs, N, uni2); in DEF_TEST()
64 REPORTER_ASSERT(reporter, memcmp(uni, uni2, sizeof(uni)) == 0); in DEF_TEST()
/external/python/cpython3/Lib/json/
Ddecoder.py120 uni2 = _decode_uXXXX(s, end + 1)
121 if 0xdc00 <= uni2 <= 0xdfff:
122 uni = 0x10000 + (((uni - 0xd800) << 10) | (uni2 - 0xdc00))
/external/python/cpython2/Lib/json/
Ddecoder.py132 uni2 = _decode_uXXXX(s, end + 1)
133 if 0xdc00 <= uni2 <= 0xdfff:
134 uni = 0x10000 + (((uni - 0xd800) << 10) | (uni2 - 0xdc00))
/external/deqp/data/gles31/shaders/es31/
Duniform_location.test219 layout(location = 12) uniform float uni2;
272 layout(location = 6) uniform T uni2; // good
/external/deqp/data/gles31/shaders/es32/
Duniform_location.test238 layout(location = 12) uniform float uni2;
291 layout(location = 6) uniform T uni2; // good
/external/python/cpython2/Objects/
Dunicodeobject.c3666 Py_UNICODE *uni2; in unicode_encode_ucs1() local
3768 for (uni2 = PyUnicode_AS_UNICODE(repunicode); repsize-->0; ++uni2, ++str) { in unicode_encode_ucs1()
3769 c = *uni2; in unicode_encode_ucs1()
4655 Py_UNICODE *uni2; in charmap_encoding_error() local
4753 for (uni2 = PyUnicode_AS_UNICODE(repunicode); repsize-->0; ++uni2) { in charmap_encoding_error()
4754 x = charmapencode_output(*uni2, mapping, res, respos); in charmap_encoding_error()
5103 Py_UNICODE *uni2; in PyUnicode_TranslateCharmap() local
5172 for (uni2 = PyUnicode_AS_UNICODE(repunicode); repsize-->0; ++uni2) in PyUnicode_TranslateCharmap()
5173 *str++ = *uni2; in PyUnicode_TranslateCharmap()
5246 Py_UNICODE *uni2; in PyUnicode_EncodeDecimal() local
[all …]