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

  /external/flatbuffers/include/flatbuffers/
util.h 241 inline int ToUTF8(uint32_t ucc, std::string *out) {
242 assert(!(ucc & 0x80000000)); // Top bit can't be set.
247 if (ucc < (1u << max_bits)) { // does it fit?
252 (ucc >> remain_bits));
255 (*out) += static_cast<char>(((ucc >> (j * 6)) & 0x3F) | 0x80);
286 int ucc = *(*in)++ & ((1 << (7 - len)) - 1); local
289 ucc <<= 6;
290 ucc |= *(*in)++ & 0x3F; // Grab 6 more bits of the code.
294 if (ucc >= 0xD800 && ucc <= 0xDFFF)
    [all...]
  /external/flatbuffers/src/
idl_gen_text.cpp 123 int ucc = FromUTF8(&utf8); local
124 if (ucc < 0) {
144 if (ucc <= 0xFFFF) {
147 text += IntToStringHex(ucc, 4);
148 } else if (ucc <= 0x10FFFF) {
150 uint32_t base = ucc - 0x10000;
  /external/icu/icu4c/source/i18n/
dcfmtsym.cpp 446 UChar ucc[4]={0}; //Currency Codes are always 3 chars long local
450 uccLen = ucurr_forLocale(locName, ucc, uccLen, &localStatus);
454 u_UCharsToChars(ucc, cc, uccLen);

Completed in 69 milliseconds