HomeSort by relevance Sort by last modified time
    Searched refs:byte3 (Results 1 - 25 of 100) sorted by null

1 2 3 4

  /external/icu/icu4c/source/i18n/
collation.cpp 100 int32_t byte3 = ((int32_t)(basePrimary >> 8) & 0xff) - step; local
101 if(byte3 >= 2) {
102 return (basePrimary & 0xffff0000) | ((uint32_t)byte3 << 8);
104 byte3 += 254;
120 return (basePrimary & 0xff000000) | ((uint32_t)byte2 << 16) | ((uint32_t)byte3 << 8);
  /external/sonivox/arm-wt-22k/lib_src/
eas_midi.c 92 pMIDIStream->byte3 = EAS_FALSE;
125 pMIDIStream->byte3 = EAS_FALSE;
145 if (pMIDIStream->byte3)
148 pMIDIStream->byte3 = EAS_FALSE;
167 pMIDIStream->byte3 = EAS_TRUE;
186 pMIDIStream->byte3 = EAS_TRUE;
204 pMIDIStream->byte3 = EAS_TRUE;
eas_miditypes.h 47 EAS_BOOL8 byte3; /* flag indicates 3rd byte expected */ member in struct:s_midi_stream_tag
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
Utf8.java 132 // int state = byte1 ^ (byte2 << 8) ^ (byte3 << 16);
139 // int byte3 = (byte) (state >> 16);
204 private static int incompleteStateFor(int byte1, int byte2, int byte3) {
207 byte3 > (byte) 0xBF) ?
208 MALFORMED : byte1 ^ (byte2 << 8) ^ (byte3 << 16);
493 // byte3 trailing-byte test
500 // Get byte2 and byte3 from saved state or array
502 byte byte3 = 0;
509 byte3 = (byte) (state >> 16);
511 if (byte3 == 0)
813 int byte3 = 0; local
1069 int byte3 = 0; local
1165 int byte3 = 0; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
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/
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/libtextclassifier/util/utf8/
unicodetext.cc 158 unsigned char byte3 = static_cast<unsigned char>(it_[2]); local
160 return ((byte1 & 0x0F) << 12) | ((byte2 & 0x3F) << 6) | (byte3 & 0x3F);
165 ((byte3 & 0x3F) << 6) | (byte4 & 0x3F);
  /external/libunwind/src/ia64/
unwind_decoder.h 164 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; local
167 byte1 = *dp++; byte2 = *dp++; byte3 = *dp++;
173 ytreg = byte3;
175 if ((byte2 & 0x80) == 0 && byte3 == 0)
264 unw_word grmask, frmask, byte1, byte2, byte3; local
266 byte1 = *dp++; byte2 = *dp++; byte3 = *dp++;
268 frmask = ((byte1 & 0xf) << 16) | (byte2 << 8) | byte3;
  /external/valgrind/VEX/priv/
guest_s390_helpers.c 617 UInt byte3 = 0x80 | klmnop; local
619 retval = (byte1 << 16) | (byte2 << 8) | byte3;
629 UInt byte3 = 0x80 | ijklmn; local
632 retval = (byte1 << 24) | (byte2 << 16) | (byte3 << 8) | byte4;
699 s390_do_cu12_cu14_helper2(UInt byte1, UInt byte2, UInt byte3, UInt byte4,
737 (byte3 < 0x80 || byte3 > 0xbf)) {
745 (byte3 < 0x80 || byte3 > 0xbf)) {
752 (byte3 < 0x80 || byte3 > 0xbf))
    [all...]
guest_s390_defs.h 85 ULong s390_do_cu12_helper2(UInt byte1, UInt byte2, UInt byte3, UInt byte4,
87 ULong s390_do_cu14_helper2(UInt byte1, UInt byte2, UInt byte3, UInt byte4,
  /packages/services/Car/obd2-lib/src/com/android/car/obd2/
Obd2Connection.java 234 byte byte3 = (byte) (responseData[5] & 0xFF);
235 FourByteBitSet fourByteBitSet = new FourByteBitSet(byte0, byte1, byte2, byte3);
  /art/tools/
stream-trace-converter.py 50 byte3 = f.read(1)
51 if not byte3:
56 return ord(byte1) + (ord(byte2) << 8) + (ord(byte3) << 16) + (ord(byte4) << 24);
  /kernel/tests/net/test/
cstruct_test.py 63 "nest1 nest2 byte3",
76 d.byte3 = 252
88 " nest3=TestStructB(byte1=7, int2=33627591), int4=-55), byte3=252)")
  /toolchain/binutils/binutils-2.25/binutils/
unwind-ia64.c 653 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; local
658 byte3 = *dp++;
664 ytreg = byte3;
666 if ((byte2 & 0x80) == 0 && byte3 == 0)
783 unw_word grmask, frmask, byte1, byte2, byte3; local
787 byte3 = *dp++;
789 frmask = ((byte1 & 0xf) << 16) | (byte2 << 8) | byte3;
  /frameworks/native/libs/math/include/math/
vec3.h 124 typedef details::TVec3<int8_t> byte3;
  /external/dng_sdk/source/
dng_iptc.cpp 279 uint32 byte3 = stream.Get_uint8 (); local
283 byte3 == 0x47)
  /libcore/luni/src/test/java/libcore/xml/
XsltXPathConformanceTestSuite.java 594 int byte3 = in.read(); local
595 if (byte1 == 0xEF && byte2 == 0xBB && byte3 == 0xBF) {
  /external/syslinux/com32/cmenu/libmenu/
des.c 580 my_u_int32_t byte0, byte1, byte2, byte3; local
584 byte3 = (my_u_int32_t) (my_u_char_t) key[3];
586 return byte0 << 24 | byte1 << 16 | byte2 << 8 | byte3;
  /external/libevent/
evutil.c     [all...]
  /art/runtime/
dex_file_verifier.cc 1375 uint8_t byte3 = *(ptr_++); local
    [all...]
  /dalvik/libdex/
DexSwapVerify.cpp 1991 u1 byte3 = *(data++); local
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToHTMLStream.java 1260 int byte3 = 0x80 | yyyyyy; local
    [all...]
  /external/freetype/src/cff/
cf2intrp.c 1867 FT_UInt32 byte3 = (FT_UInt32)cf2_buf_readByte( charstring ); local
    [all...]
  /dalvik/dx/src/com/android/dx/io/instructions/
InstructionCodec.java 968 private static int byte3(int value) { method in class:InstructionCodec
    [all...]
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-lite/3.0.1/
protobuf-lite-3.0.1.jar 

Completed in 2059 milliseconds

1 2 3 4