Searched defs:intBytes (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/icu/source/common/
H A Dbytestriebuilder.cpp429 char intBytes[5]; local
432 intBytes[0]=(char)BytesTrie::kFiveByteValueLead;
433 intBytes[1]=(char)((uint32_t)i>>24);
434 intBytes[2]=(char)((uint32_t)i>>16);
435 intBytes[3]=(char)((uint32_t)i>>8);
436 intBytes[4]=(char)i;
439 // intBytes[0]=(char)(BytesTrie::kMinOneByteValueLead+i);
442 intBytes[0]=(char)(BytesTrie::kMinTwoByteValueLead+(i>>8));
445 intBytes[0]=(char)(BytesTrie::kMinThreeByteValueLead+(i>>16));
447 intBytes[
475 char intBytes[5]; local
[all...]
/external/icu/icu4c/source/common/
H A Dbytestriebuilder.cpp429 char intBytes[5]; local
432 intBytes[0]=(char)BytesTrie::kFiveByteValueLead;
433 intBytes[1]=(char)((uint32_t)i>>24);
434 intBytes[2]=(char)((uint32_t)i>>16);
435 intBytes[3]=(char)((uint32_t)i>>8);
436 intBytes[4]=(char)i;
439 // intBytes[0]=(char)(BytesTrie::kMinOneByteValueLead+i);
442 intBytes[0]=(char)(BytesTrie::kMinTwoByteValueLead+(i>>8));
445 intBytes[0]=(char)(BytesTrie::kMinThreeByteValueLead+(i>>16));
447 intBytes[
475 char intBytes[5]; local
[all...]

Completed in 169 milliseconds