/external/flatbuffers/java/com/google/flatbuffers/ |
D | Utf8.java | 121 byte byte1, byte byte2, byte byte3, char[] resultArr, int resultPos) in handleThreeBytes() argument 128 || isNotTrailingByte(byte3)) { in handleThreeBytes() 132 … (((byte1 & 0x0F) << 12) | (trailingByteValue(byte2) << 6) | trailingByteValue(byte3)); in handleThreeBytes() 136 byte byte1, byte byte2, byte byte3, byte byte4, char[] resultArr, int resultPos) in handleFourBytes() argument 147 || isNotTrailingByte(byte3) in handleFourBytes() 153 | (trailingByteValue(byte3) << 6) in handleFourBytes()
|
/external/protobuf/java/core/src/main/java/com/google/protobuf/ |
D | Utf8.java | 204 private static int incompleteStateFor(int byte1, int byte2, int byte3) { in incompleteStateFor() argument 207 byte3 > (byte) 0xBF) ? in incompleteStateFor() 208 MALFORMED : byte1 ^ (byte2 << 8) ^ (byte3 << 16); in incompleteStateFor() 502 byte byte3 = 0; in partialIsValidUtf8Default() 509 byte3 = (byte) (state >> 16); in partialIsValidUtf8Default() 511 if (byte3 == 0) { in partialIsValidUtf8Default() 512 byte3 = buffer.get(index++); in partialIsValidUtf8Default() 514 return incompleteStateFor(byte1, byte2, byte3); in partialIsValidUtf8Default() 529 || byte3 > (byte) 0xBF in partialIsValidUtf8Default() 813 int byte3 = 0; in partialIsValidUtf8() local [all …]
|
/external/icu/icu4c/source/i18n/ |
D | collation.cpp | 100 int32_t byte3 = ((int32_t)(basePrimary >> 8) & 0xff) - step; in decThreeBytePrimaryByOneStep() local 101 if(byte3 >= 2) { in decThreeBytePrimaryByOneStep() 102 return (basePrimary & 0xffff0000) | ((uint32_t)byte3 << 8); in decThreeBytePrimaryByOneStep() 104 byte3 += 254; in decThreeBytePrimaryByOneStep() 120 return (basePrimary & 0xff000000) | ((uint32_t)byte2 << 16) | ((uint32_t)byte3 << 8); in decThreeBytePrimaryByOneStep()
|
/external/oj-libjdwp/src/share/npt/ |
D | utf.c | 233 unsigned byte2, byte3, byte4, u21; in utf8sToUtf8m() local 237 byte3 = (unsigned char)string[++i]; in utf8sToUtf8m() 242 u21 += (byte3 & 0x3F) << 6; in utf8sToUtf8m() 274 unsigned byte1, byte2, byte3, byte4, byte5, byte6; in utf8mToUtf8sLength() local 297 byte3 = (unsigned char)string[++i]; in utf8mToUtf8sLength() 341 unsigned byte1, byte2, byte3, byte4, byte5, byte6; in utf8mToUtf8s() local 357 byte3 = (unsigned char)string[++i]; in utf8mToUtf8s() 372 u21 += (byte3 & 0x3F) << 10; in utf8mToUtf8s() 389 newString[j++] = byte3; in utf8mToUtf8s()
|
/external/sonivox/arm-wt-22k/lib_src/ |
D | eas_midi.c | 92 pMIDIStream->byte3 = EAS_FALSE; in EAS_InitMIDIStream() 125 pMIDIStream->byte3 = EAS_FALSE; in EAS_ParseMIDIStream() 145 if (pMIDIStream->byte3) in EAS_ParseMIDIStream() 148 pMIDIStream->byte3 = EAS_FALSE; in EAS_ParseMIDIStream() 167 pMIDIStream->byte3 = EAS_TRUE; in EAS_ParseMIDIStream() 186 pMIDIStream->byte3 = EAS_TRUE; in EAS_ParseMIDIStream() 204 pMIDIStream->byte3 = EAS_TRUE; in EAS_ParseMIDIStream()
|
D | eas_miditypes.h | 47 EAS_BOOL8 byte3; /* flag indicates 3rd byte expected */ member
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
D | Collation.java | 538 int byte3 = ((int)(basePrimary >> 8) & 0xff) - step; 539 if(byte3 >= 2) { 540 return (basePrimary & 0xffff0000L) | (byte3 << 8); 542 byte3 += 254; 558 return (basePrimary & 0xff000000L) | (byte2 << 16) | (byte3 << 8);
|
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
D | Collation.java | 536 int byte3 = ((int)(basePrimary >> 8) & 0xff) - step; 537 if(byte3 >= 2) { 538 return (basePrimary & 0xffff0000L) | (byte3 << 8); 540 byte3 += 254; 556 return (basePrimary & 0xff000000L) | (byte2 << 16) | (byte3 << 8);
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/X86/ |
D | bswap_tree.ll | 30 %byte3 = and i32 %x, 4278190080 ; 0xff000000 34 %tmp3 = lshr i32 %byte3, 8 62 %byte3 = shl i32 %x, 8 66 %tmp3 = and i32 %byte3, 4278190080 ; 0xff000000
|
D | bswap_tree2.ll | 42 %byte3 = or i32 %x, 4278190080 ; 0xff000000 46 %tmp3 = lshr i32 %byte3, 8 88 %byte3 = shl i32 %x, 8 92 %tmp3 = and i32 %byte3, 4278190080 ; 0xff000000 141 %byte3 = shl i32 %integer, 8 145 %tmp3 = and i32 %byte3, 4278190080 ; 0xff000000
|
D | unfold-masked-merge-scalar-constmask-lowhigh.ll | 8 ; Y: [byte3][byte2]
|
D | unfold-masked-merge-scalar-constmask-innerouter.ll | 7 ; X: [byte3] [byte0]
|
/external/libunwind/src/ia64/ |
D | unwind_decoder.h | 164 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; in unw_decode_x4() local 167 byte1 = *dp++; byte2 = *dp++; byte3 = *dp++; in unw_decode_x4() 173 ytreg = byte3; in unw_decode_x4() 175 if ((byte2 & 0x80) == 0 && byte3 == 0) in unw_decode_x4() 264 unw_word grmask, frmask, byte1, byte2, byte3; in unw_decode_p2_p5() local 266 byte1 = *dp++; byte2 = *dp++; byte3 = *dp++; in unw_decode_p2_p5() 268 frmask = ((byte1 & 0xf) << 16) | (byte2 << 8) | byte3; in unw_decode_p2_p5()
|
/external/libtextclassifier/utils/utf8/ |
D | unicodetext.cc | 284 unsigned char byte3 = static_cast<unsigned char>(it_[2]); in operator *() local 286 return ((byte1 & 0x0F) << 12) | ((byte2 & 0x3F) << 6) | (byte3 & 0x3F); in operator *() 291 ((byte3 & 0x3F) << 6) | (byte4 & 0x3F); in operator *()
|
/external/u-boot/drivers/spi/ |
D | zynq_qspi.c | 180 u8 byte3; in zynq_qspi_read_data() local 198 byte3 = (u8)(data >> 16); in zynq_qspi_read_data() 199 *((u8 *)priv->rx_buf) = byte3; in zynq_qspi_read_data()
|
/external/dng_sdk/source/ |
D | dng_iptc.cpp | 279 uint32 byte3 = stream.Get_uint8 (); in Parse() local 283 byte3 == 0x47) in Parse()
|
D | dng_image_writer.cpp | 3462 uint8 byte3 = (uint8) (code << (-shift3)); in PutCodeWord() local 3473 *dstPtr3 = byte3; in PutCodeWord()
|
/external/libevent/ |
D | evutil.c | 1988 unsigned byte1,byte2,byte3,byte4; in evutil_inet_pton() 1997 &byte1,&byte2,&byte3,&byte4,&more) != 4) in evutil_inet_pton() 2002 byte3 > 255 || in evutil_inet_pton() 2007 words[7] = (byte3<<8) | byte4; in evutil_inet_pton()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/AArch64/ |
D | unfold-masked-merge-scalar-constmask-lowhigh.ll | 7 ; Y: [byte3][byte2]
|
D | unfold-masked-merge-scalar-constmask-innerouter.ll | 6 ; X: [byte3] [byte0]
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
D | ToHTMLStream.java | 1260 int byte3 = 0x80 | yyyyyy; in writeAttrURI() local 1268 writer.write(makeHHString(byte3)); in writeAttrURI()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/SystemZ/ |
D | vec-combine-02.ll | 176 %byte3 = extractelement <16 x i8> %vec, i32 13 181 store i8 %byte3, i8 *%ptr3
|
/external/llvm/test/CodeGen/SystemZ/ |
D | vec-combine-02.ll | 176 %byte3 = extractelement <16 x i8> %vec, i32 13 181 store i8 %byte3, i8 *%ptr3
|
/external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/ |
D | TestUtilities.java | 140 Matcher byte3 = PatternCache.get( in TestUrlEscape() local 156 assertTrue("Should be %xx%xx%xx", byte3.reset(escaped) in TestUrlEscape()
|
/external/freetype/src/psaux/ |
D | psintrp.c | 2963 FT_UInt32 byte3 = (FT_UInt32)cf2_buf_readByte( charstring ); in cf2_interpT2CharString() local 2969 ( byte3 << 8 ) | in cf2_interpT2CharString()
|