HomeSort by relevance Sort by last modified time
    Searched refs:byte2 (Results 1 - 24 of 24) sorted by null

  /external/icu/icu4c/source/i18n/
collation.cpp 76 int32_t byte2 = ((int32_t)(basePrimary >> 16) & 0xff) - step; local
78 if(byte2 < 4) {
79 byte2 += 251;
83 if(byte2 < 2) {
84 byte2 += 254;
88 return (basePrimary & 0xff000000) | ((uint32_t)byte2 << 16);
103 int32_t byte2 = ((int32_t)(basePrimary >> 16) & 0xff) - 1; local
105 if(byte2 < 4) {
106 byte2 = 0xfe;
110 if(byte2 < 2)
    [all...]
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/util/
BookmarkUtils.java 30 public static boolean byteArrayEqual(byte[] byte1, byte[] byte2) {
31 if (byte1 == null && byte2 != null) {
32 return byte2.length == 0;
34 if (byte2 == null && byte1 != null) {
37 return Arrays.equals(byte1, byte2);
  /external/libunwind/src/ia64/
unwind_decoder.h 126 unsigned char byte1, byte2, abreg, x, ytreg; local
129 byte1 = *dp++; byte2 = *dp++;
132 ytreg = byte2;
144 unsigned char byte1, byte2, abreg, qp; local
147 byte1 = *dp++; byte2 = *dp++;
152 abreg = (byte2 & 0x7f);
164 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; local
167 byte1 = *dp++; byte2 = *dp++; byte3 = *dp++;
171 abreg = (byte2 & 0x7f);
172 x = (byte2 >> 7) & 1
264 unw_word grmask, frmask, byte1, byte2, byte3; local
292 unsigned char r, byte1, byte2; local
    [all...]
  /external/chromium_org/components/autofill/core/browser/crypto/
rc4_decryptor.h 60 void SwapByte(uint8* byte1, uint8* byte2) {
62 *byte1 = *byte2;
63 *byte2 = temp;
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/
glx_usefont.c 141 char2b.byte2 = (c & 0xff);
167 unsigned int byte1 = 0, byte2 = 0; local
180 byte2 = which & 0xff;
182 if ((fs->min_char_or_byte2 > byte2) ||
183 (fs->max_char_or_byte2 < byte2) ||
197 (byte2 - fs->min_char_or_byte2);
  /external/chromium_org/third_party/mesa/src/src/glx/
xfont.c 147 char2b.byte2 = (c & 0xff);
173 int byte1 = 0, byte2 = 0; local
186 byte2 = which & 0xff;
188 if ((fs->min_char_or_byte2 > byte2) ||
189 (fs->max_char_or_byte2 < byte2) ||
203 (byte2 - fs->min_char_or_byte2);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
xfonts.c 148 char2b.byte2 = (c & 0xff);
174 unsigned int byte1 = 0, byte2 = 0; local
187 byte2 = which & 0xff;
189 if ((fs->min_char_or_byte2 > byte2) ||
190 (fs->max_char_or_byte2 < byte2) ||
204 (byte2 - fs->min_char_or_byte2);
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
glx_usefont.c 141 char2b.byte2 = (c & 0xff);
167 unsigned int byte1 = 0, byte2 = 0; local
180 byte2 = which & 0xff;
182 if ((fs->min_char_or_byte2 > byte2) ||
183 (fs->max_char_or_byte2 < byte2) ||
197 (byte2 - fs->min_char_or_byte2);
  /external/mesa3d/src/glx/
xfont.c 147 char2b.byte2 = (c & 0xff);
173 int byte1 = 0, byte2 = 0; local
186 byte2 = which & 0xff;
188 if ((fs->min_char_or_byte2 > byte2) ||
189 (fs->max_char_or_byte2 < byte2) ||
203 (byte2 - fs->min_char_or_byte2);
  /external/mesa3d/src/mesa/drivers/x11/
xfonts.c 148 char2b.byte2 = (c & 0xff);
174 unsigned int byte1 = 0, byte2 = 0; local
187 byte2 = which & 0xff;
189 if ((fs->min_char_or_byte2 > byte2) ||
190 (fs->max_char_or_byte2 < byte2) ||
204 (byte2 - fs->min_char_or_byte2);
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/utf/
unicodetext.cc 449 uint8 byte2 = static_cast<uint8>(it_[1]);
452 | (byte2 & 0x3F);
457 | ((byte2 & 0x3F) << 6)
462 | ((byte2 & 0x3F) << 12)
  /art/runtime/
dex_file_verifier.cc 857 uint8_t byte2 = *(ptr_++); local
858 if (UNLIKELY((byte2 & 0xc0) != 0x80)) {
859 ErrorStringPrintf("Illegal continuation byte %x in string data", byte2);
862 uint16_t value = ((byte & 0x1f) << 6) | (byte2 & 0x3f);
871 uint8_t byte2 = *(ptr_++); local
872 if (UNLIKELY((byte2 & 0xc0) != 0x80)) {
873 ErrorStringPrintf("Illegal continuation byte %x in string data", byte2);
881 uint16_t value = ((byte & 0x0f) << 12) | ((byte2 & 0x3f) << 6) | (byte3 & 0x3f);
    [all...]
  /cts/hostsidetests/aadb/src/com/android/cts/aadb/
TestDeviceFuncTest.java 219 int byte2 = stream2.read(); local
220 if (byte1 != byte2) {
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
ChromeBrowserProvider.java     [all...]
  /dalvik/libdex/
DexSwapVerify.cpp 1928 u1 byte2 = *(data++); local
1949 u1 byte2 = *(data++); local
    [all...]
  /external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
sctp_crc32.c 719 uint8_t byte0, byte1, byte2, byte3; local
    [all...]
  /external/llvm/lib/Target/X86/Disassembler/
X86DisassemblerDecoder.cpp 460 uint8_t byte1, byte2; local
467 if (lookAtByte(insn, &byte2)) {
473 ((~byte1 & 0xc) == 0xc) && ((byte2 & 0x4) == 0x4)) {
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToHTMLStream.java 1258 int byte2 = local
    [all...]
  /dalvik/dx/src/com/android/dx/io/instructions/
InstructionCodec.java 942 private static int byte2(int value) { method in class:InstructionCodec
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
InstructionCodec.java 1076 private static int byte2(int value) { method in class:InstructionCodec
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.security_1.0.200.v20100503.jar 
org.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jar 
org.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jar 
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar 

Completed in 660 milliseconds