/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | UnicodeCompressor.java | 383 int hiByte = 0; in compress() local 464 hiByte = curUC >>> 8; in compress() 467 if(sUnicodeTagTable[hiByte]) in compress() 471 byteBuffer[bytePos++] = (byte) hiByte; in compress() 600 hiByte = curUC >>> 8; in compress() 603 if(sUnicodeTagTable[hiByte]) in compress() 607 byteBuffer[bytePos++] = (byte) hiByte; in compress() 639 hiByte = curUC >>> 8; in compress() 642 if(sUnicodeTagTable[ hiByte ]) in compress() 646 byteBuffer[bytePos++] = (byte) hiByte; in compress() [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | UnicodeCompressor.java | 386 int hiByte = 0; in compress() local 467 hiByte = curUC >>> 8; in compress() 470 if(sUnicodeTagTable[hiByte]) in compress() 474 byteBuffer[bytePos++] = (byte) hiByte; in compress() 603 hiByte = curUC >>> 8; in compress() 606 if(sUnicodeTagTable[hiByte]) in compress() 610 byteBuffer[bytePos++] = (byte) hiByte; in compress() 642 hiByte = curUC >>> 8; in compress() 645 if(sUnicodeTagTable[ hiByte ]) in compress() 649 byteBuffer[bytePos++] = (byte) hiByte; in compress() [all …]
|
/external/javaparser/javaparser-core/generated-sources/javacc/com/github/javaparser/ |
D | GeneratedJavaParserTokenManager.java | 2230 int hiByte = (curChar >> 8); in jjMoveNfa_0() local 2231 int i1 = hiByte >> 6; in jjMoveNfa_0() 2232 long l1 = 1L << (hiByte & 077); in jjMoveNfa_0() 2241 if (!jjCanMove_3(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0() 2248 if (jjCanMove_0(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0() 2253 if (jjCanMove_2(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0() 2261 if (jjCanMove_1(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0() 2265 if (jjCanMove_1(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0() 2269 if (!jjCanMove_2(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0() 2276 if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0() [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/generated/com/github/javaparser/ |
D | ASTParserTokenManager.java | 1899 int hiByte = (int)(curChar >> 8); in jjMoveNfa_0() local 1900 int i1 = hiByte >> 6; in jjMoveNfa_0() 1901 long l1 = 1L << (hiByte & 077); in jjMoveNfa_0() 1909 if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0() 1916 if (jjCanMove_0(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0() 1920 if (jjCanMove_0(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0() 1924 if (!jjCanMove_2(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0() 1931 if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0() 1938 if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 7) in jjMoveNfa_0() 2026 private static final boolean jjCanMove_0(int hiByte, int i1, int i2, long l1, long l2) in jjCanMove_0() argument [all …]
|
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-generated-sources/com/github/javaparser/ |
D | ASTParserTokenManager.java | 1975 int hiByte = (curChar >> 8); in jjMoveNfa_0() local 1976 int i1 = hiByte >> 6; in jjMoveNfa_0() 1977 long l1 = 1L << (hiByte & 077); in jjMoveNfa_0() 1985 if (!jjCanMove_1(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0() 1992 if (jjCanMove_0(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0() 1996 if (jjCanMove_0(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0() 2000 if (!jjCanMove_2(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0() 2007 if (!jjCanMove_0(hiByte, i1, i2, l1, l2)) in jjMoveNfa_0() 2014 if (jjCanMove_0(hiByte, i1, i2, l1, l2) && kind > 32) in jjMoveNfa_0() 2098 private static final boolean jjCanMove_0(int hiByte, int i1, int i2, long l1, long l2) in jjCanMove_0() argument [all …]
|
/external/icu/icu4c/source/common/ |
D | putil.cpp | 236 uint8_t hiByte; in u_signBit() local 238 hiByte = *(uint8_t *)&d; in u_signBit() 240 hiByte = *(((uint8_t *)&d) + sizeof(double) - 1); in u_signBit() 242 return (hiByte & 0x80) != 0; in u_signBit()
|