HomeSort by relevance Sort by last modified time
    Searched refs:c16 (Results 1 - 12 of 12) sorted by null

  /external/chromium/third_party/icu/source/common/
utrie.h 175 /** Internal trie getter from an offset (0 if c16 is a BMP/lead units) and a 16-bit unit */
176 #define _UTRIE_GET_RAW(trie, data, offset, c16) \
178 ((int32_t)((trie)->index[(offset)+((c16)>>UTRIE_SHIFT)])<<UTRIE_INDEX_SHIFT)+ \
179 ((c16)&UTRIE_MASK) \
199 #define _UTRIE_GET_FROM_BMP(trie, data, c16) \
200 _UTRIE_GET_RAW(trie, data, 0xd800<=(c16) && (c16)<=0xdbff ? UTRIE_LEAD_INDEX_DISP : 0, c16);
286 * c16 may be a lead surrogate, which may have a value including a folding offset.
289 * @param c16 (UChar, in) the input BMP code poin
    [all...]
ustring.c 1340 UChar c16; local
    [all...]
  /external/icu4c/common/
utrie.h 175 /** Internal trie getter from an offset (0 if c16 is a BMP/lead units) and a 16-bit unit */
176 #define _UTRIE_GET_RAW(trie, data, offset, c16) \
178 ((int32_t)((trie)->index[(offset)+((c16)>>UTRIE_SHIFT)])<<UTRIE_INDEX_SHIFT)+ \
179 ((c16)&UTRIE_MASK) \
199 #define _UTRIE_GET_FROM_BMP(trie, data, c16) \
200 _UTRIE_GET_RAW(trie, data, 0xd800<=(c16) && (c16)<=0xdbff ? UTRIE_LEAD_INDEX_DISP : 0, c16);
286 * c16 may be a lead surrogate, which may have a value including a folding offset.
289 * @param c16 (UChar, in) the input BMP code poin
    [all...]
ustring.c 1340 UChar c16; local
    [all...]
  /external/chromium/third_party/icu/source/test/perf/unisetperf/draft/
trieset.cpp 25 #define UTRIE_GET8_FROM_LEAD(trie, c16) \
27 ((int32_t)((trie)->index[(c16)>>UTRIE_SHIFT])<<UTRIE_INDEX_SHIFT)+ \
28 ((c16)&UTRIE_MASK) \
  /external/icu4c/test/perf/unisetperf/draft/
trieset.cpp 25 #define UTRIE_GET8_FROM_LEAD(trie, c16) \
27 ((int32_t)((trie)->index[(c16)>>UTRIE_SHIFT])<<UTRIE_INDEX_SHIFT)+ \
28 ((c16)&UTRIE_MASK) \
  /external/chromium/third_party/icu/source/io/
ustdio.c 624 UChar c16 = *(str->fPos)++; local
625 *c32 = U16_GET_SUPPLEMENTARY(*c32, c16);
  /external/icu4c/io/
ustdio.c 624 UChar c16 = *(str->fPos)++; local
625 *c32 = U16_GET_SUPPLEMENTARY(*c32, c16);
  /external/chromium/third_party/icu/source/i18n/
uregex.cpp 850 UChar c16 = ((UChar *)context)[offset]; local
851 return c16;
    [all...]
  /external/icu4c/i18n/
rematch.cpp 354 UChar c16 = (UChar)escapedChar; local
355 destLen += utext_replace(dest, destLen, destLen, &c16, 1, &status);
376 UChar c16 = (UChar)c; local
377 destLen += utext_replace(dest, destLen, destLen, &c16, 1, &status);
390 UChar c16 = (UChar)c; local
391 destLen += utext_replace(dest, destLen, destLen, &c16, 1, &status);
428 UChar c16 = DOLLARSIGN; local
429 destLen += utext_replace(dest, destLen, destLen, &c16, 1, &status);
    [all...]
  /external/chromium/third_party/icu/source/test/cintltst/
creststn.c 2807 UChar32 c16, c8; local
    [all...]
  /external/icu4c/test/cintltst/
creststn.c 2825 UChar32 c16, c8; local
    [all...]

Completed in 335 milliseconds