Home
last modified time | relevance | path

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

/external/flac/src/plugin_common/
Dtags.c94 static size_t local__utf8_to_ucs2(const FLAC__byte *utf8, FLAC__uint16 *ucs2) in local__utf8_to_ucs2() argument
98 FLAC__ASSERT(0 != ucs2); in local__utf8_to_ucs2()
101 *ucs2 = *utf8; in local__utf8_to_ucs2()
103 *ucs2 = (*utf8 & 0x3F)<<6 | (*(utf8+1) & 0x3F); in local__utf8_to_ucs2()
105 *ucs2 = (*utf8 & 0x1F)<<12 | (*(utf8+1) & 0x3F)<<6 | (*(utf8+2) & 0x3F); in local__utf8_to_ucs2()
107 *ucs2 = '?'; in local__utf8_to_ucs2()
149 static FLaC__INLINE size_t local__ucs2len(FLAC__uint16 ucs2) in local__ucs2len() argument
151 if (ucs2 < 0x0080) in local__ucs2len()
153 else if (ucs2 < 0x0800) in local__ucs2len()
159 static size_t local__ucs2_to_utf8(FLAC__uint16 ucs2, FLAC__byte *utf8) in local__ucs2_to_utf8() argument
[all …]
/external/icu/icu4c/source/common/
Dustr_cnv.cpp205 const UChar *ucs2, in u_austrncpy() argument
216 &ucs2, in u_austrncpy()
217 ucs2+u_ustrnlen(ucs2, n), in u_austrncpy()
237 const UChar *ucs2 ) in u_austrcpy() argument
245 ucs2, in u_austrcpy()
/external/rust/crates/grpcio-sys/grpc/third_party/re2/
Ducs2.diff190 - bool ucs2 = prog_->flags() & Regexp::UCS2;
198 - if (!ucs2 && !anchored && first_byte_ >= 0 && runq->size() == 0 &&
209 - if(ucs2 && runq->size() == 0 &&
218 - if(!ucs2 || (p - context.begin()) % 2 == 0) {
362 - { single_line|Regexp::UCS2, "single-line, ucs2" },
366 - { multi_line|Regexp::UCS2, "multiline, ucs2" },
498 - bool ucs2 = false;
508 - ucs2 = true;
520 - if (ucs2) {
/external/python/cpython2/Tools/gdb/
Dlibpython.py1129 ucs2 = int(field_str[i])
1130 if ucs2 < 0xDC00 or ucs2 > 0xDFFF:
1133 code |= ucs2 & 0x03FF
/external/python/cffi/doc/source/
Dinstallation.rst174 error occurs in Python 2 as soon as you mix "ucs2" and "ucs4" builds of
177 different Python: one that was running "ucs2". (If the opposite problem
/external/python/cpython3/Tools/gdb/
Dlibpython.py1235 ucs2 = int(field_str[i])
1236 if ucs2 < 0xDC00 or ucs2 > 0xDFFF:
1239 code |= ucs2 & 0x03FF
/external/icu/libicu/ndk_headers/unicode/
Dustring.h580 const UChar *ucs2,
/external/icu/icu4c/source/common/unicode/
Dustring.h560 const UChar *ucs2,
/external/icu/libandroidicu/include/unicode/
Dustring.h560 const UChar *ucs2,
/external/icu/libicu/cts_headers/unicode/
Dustring.h560 const UChar *ucs2,
/external/python/cpython3/Include/cpython/
Dunicodeobject.h241 Py_UCS2 *ucs2; member
/external/python/pybind11/docs/advanced/cast/
Dstrings.rst210 3.3 compiled with ``--enable-unicode=ucs2``.
/external/icu/libicu/src/
Dshim.cpp575 int32_t u_strncmp(const UChar * ucs1, const UChar * ucs2, int32_t n) { in u_strncmp() argument
576 return U_ICU_ENTRY_POINT_RENAME(u_strncmp)(ucs1, ucs2, n); in u_strncmp()
/external/python/cpython3/Objects/
Dunicodeobject.c2100 Py_UCS2 *ucs2 = start; in unicode_write_cstr() local
2102 for (; str < end; ++ucs2, ++str) in unicode_write_cstr()
2103 *ucs2 = (Py_UCS2)*str; in unicode_write_cstr()
2105 assert((ucs2 - start) <= PyUnicode_GET_LENGTH(unicode)); in unicode_write_cstr()
12816 Py_UCS2 *ucs2 = PyUnicode_2BYTE_DATA(u); in unicode_repeat() local
12818 ucs2[n] = fill_char; in unicode_repeat()
/external/python/cpython2/
Dconfigure.ac4168 …_HELP_STRING([--enable-unicode@<:@=ucs@<:@24@:>@@:>@], [Enable Unicode strings (default is ucs2)]),
4178 *) enable_unicode="ucs2"
4186 ucs2) unicode_size="2"
4193 *) AC_MSG_ERROR([invalid value for --enable-unicode. Use either ucs2 or ucs4 (lowercase).]) ;;
Dconfigure1485 Enable Unicode strings (default is ucs2)
13580 ucs2) unicode_size="2"
/external/python/cpython2/Doc/library/
Dcodecs.rst792 via ``--enable-unicode=ucs2`` or ``--enable-unicode=ucs4``, with the
/external/python/cpython2/Misc/
DHISTORY7074 ucs2 and ucs4 (new in 2.2a1). With --disable-unicode, the Unicode
/external/python/cpython3/Misc/
DHISTORY24453 ucs2 and ucs4 (new in 2.2a1). With --disable-unicode, the Unicode