Searched refs:ucs2 (Results 1 - 10 of 10) sorted by relevance

/external/qemu/telephony/
H A Dgsm.h104 ** Note that here, 'ucs2' really refers to non-aligned UCS2-BE, as used by the GSM standard
107 /* check that all characters in a given ucs2 string can be encoded into the GSM alphabet.
109 extern int ucs2_check_gsm7( cbytes_t ucs2, int ucs2len );
111 /* convert a ucs2 string into a GSM septet string, assumes 'dst' is NULL or properly sized,
114 extern int ucs2_to_gsm7( cbytes_t ucs2, int ucs2len, bytes_t dst, int offset );
116 /* convert a ucs2 string into a GSM septet string, assumes 'dst' is NULL or properly sized,
118 extern int ucs2_to_gsm8( cbytes_t ucs2, int ucs2len, bytes_t dst );
120 /* convert a GSM septets string into a ucs2 string. assumes that 'ucs2' is NULL or
122 of input septets. return the number of ucs2 character
[all...]
H A Dgsm.c446 ucs2_write( bytes_t ucs2, int offset, int v ) argument
448 if (ucs2) {
449 ucs2[offset+0] = (byte_t) (v >> 8);
450 ucs2[offset+1] = (byte_t) (v);
498 ucs2_to_utf8( cbytes_t ucs2, argument
505 for (nn = 0; nn < ucs2len; ucs2 += 2, nn++) {
506 int c= (ucs2[0] << 8) | ucs2[1];
516 bytes_t ucs2 )
528 result += ucs2_write(ucs2, resul
739 ucs2_from_gsm7( bytes_t ucs2, cbytes_t src, int septet_offset, int septet_count ) argument
927 ucs2_to_gsm7( cbytes_t ucs2, int ucs2len, bytes_t dst, int offset ) argument
962 ucs2_to_gsm8( cbytes_t ucs2, int ucs2len, bytes_t dst ) argument
[all...]
/external/chromium_org/third_party/icu/source/common/
H A Dustr_cnv.c202 const UChar *ucs2,
213 &ucs2,
214 ucs2+u_ustrnlen(ucs2, n),
234 const UChar *ucs2 )
242 ucs2,
201 u_austrncpy(char *s1, const UChar *ucs2, int32_t n) argument
/external/icu/icu4c/source/common/
H A Dustr_cnv.c202 const UChar *ucs2,
213 &ucs2,
214 ucs2+u_ustrnlen(ucs2, n),
234 const UChar *ucs2 )
242 ucs2,
201 u_austrncpy(char *s1, const UChar *ucs2, int32_t n) argument
/external/chromium_org/tools/python/google/httpd_config/
H A Dhttpd2_mac.conf165 AddCharset UCS-2 .ucs2
H A Dhttpd.conf570 AddCharset UCS-2 .ucs2
H A Dhttpd2.conf216 AddCharset UCS-2 .ucs2
/external/chromium_org/third_party/cython/src/Cython/Debugger/
H A Dlibpython.py1195 ucs2 = int(field_str[i])
1196 if ucs2 < 0xDC00 or ucs2 > 0xDFFF:
1199 code |= ucs2 & 0x03FF
/external/chromium_org/third_party/icu/source/common/unicode/
H A Dustring.h559 * @param ucs2 A string to compare (can be NULL/invalid if n<=0).
568 const UChar *ucs2,
/external/icu/icu4c/source/common/unicode/
H A Dustring.h559 * @param ucs2 A string to compare (can be NULL/invalid if n<=0).
568 const UChar *ucs2,

Completed in 250 milliseconds