/external/protobuf/java/src/main/java/com/google/protobuf/ |
H A D | Utf8.java | 86 // int state = byte1 ^ (byte2 << 8) ^ (byte3 << 16); 93 // int byte3 = (byte) (state >> 16); 184 // byte3 trailing-byte test 191 // Get byte2 and byte3 from saved state or array 193 int byte3 = 0; 200 byte3 = (byte) (state >> 16); 202 if (byte3 == 0) { 203 byte3 = bytes[index++]; 205 return incompleteStateFor(byte1, byte2, byte3); 219 // byte3 trailin 333 incompleteStateFor(int byte1, int byte2, int byte3) argument [all...] |
/external/icu/icu4c/source/i18n/ |
H A D | collation.cpp | 98 int32_t byte3 = ((int32_t)(basePrimary >> 8) & 0xff) - step; local 99 if(byte3 >= 2) { 100 return (basePrimary & 0xffff0000) | ((uint32_t)byte3 << 8); 102 byte3 += 254; 118 return (basePrimary & 0xff000000) | ((uint32_t)byte2 << 16) | ((uint32_t)byte3 << 8);
|
/external/sonivox/arm-wt-22k/lib_src/ |
H A D | 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;
|
H A D | eas_miditypes.h | 47 EAS_BOOL8 byte3; /* flag indicates 3rd byte expected */ member in struct:s_midi_stream_tag
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/ |
H A 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/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/ |
H A D | Collation.java | 534 int byte3 = ((int)(basePrimary >> 8) & 0xff) - step; 535 if(byte3 >= 2) { 536 return (basePrimary & 0xffff0000L) | (byte3 << 8); 538 byte3 += 254; 554 return (basePrimary & 0xff000000L) | (byte2 << 16) | (byte3 << 8);
|
/external/libunwind/src/ia64/ |
H A D | 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/ |
H A D | 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, argument 737 (byte3 < 0x80 || byte3 > 0xbf)) { 745 (byte3 < 0x80 || byte3 > 0xbf)) { 752 (byte3 < 831 s390_do_cu12_helper2(UInt byte1, UInt byte2, UInt byte3, UInt byte4, ULong stuff) argument 839 s390_do_cu14_helper2(UInt byte1, UInt byte2, UInt byte3, UInt byte4, ULong stuff) argument [all...] |
H A D | 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,
|
H A D | guest_s390_toIR.c | 13773 s390_call_cu12_helper2(IRExpr *byte1, IRExpr *byte2, IRExpr *byte3, argument 13777 args = mkIRExprVec_5(byte1, byte2, byte3, byte4, stuff); 13788 s390_call_cu14_helper2(IRExpr *byte1, IRExpr *byte2, IRExpr *byte3, argument 13792 args = mkIRExprVec_5(byte1, byte2, byte3, byte4, stuff); 13846 IRExpr *cond, *addr, *byte2, *byte3, *byte4; local 13853 byte3 = mkite(cond, unop(Iop_8Uto64, load(Ity_I8, addr)), mkU64(0)); 13867 assign(retval2, s390_call_cu12_helper2(mkexpr(byte1), byte2, byte3, 13870 assign(retval2, s390_call_cu14_helper2(mkexpr(byte1), byte2, byte3,
|
/external/dng_sdk/source/ |
H A D | dng_iptc.cpp | 279 uint32 byte3 = stream.Get_uint8 (); local 283 byte3 == 0x47)
|
H A D | dng_image_writer.cpp | 3462 uint8 byte3 = (uint8) (code << (-shift3)); local 3473 *dstPtr3 = byte3;
|
/external/libevent/ |
H A D | evutil.c | 1712 int byte1,byte2,byte3,byte4; 1721 &byte1,&byte2,&byte3,&byte4,&more) != 4) 1726 byte3 > 255 || byte3 < 0 || 1731 words[7] = (byte3<<8) | byte4;
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
H A D | ToHTMLStream.java | 1260 int byte3 = 0x80 | yyyyyy; 1268 writer.write(makeHHString(byte3));
|
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/ |
H A D | InstructionCodec.java | 1080 private static int byte3(int value) { method in class:InstructionCodec
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
H A D | org.eclipse.equinox.security_1.0.200.v20100503.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
H A D | org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar | META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ... |
/external/testng/ant/ |
H A D | ivy-2.1.0.jar | META-INF/ META-INF/MANIFEST.MF META-INF/LICENSE META-INF/NOTICE fr/ fr/ ... |