Searched refs:byte1 (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/test/util/
H A DBookmarkUtils.java30 public static boolean byteArrayEqual(byte[] byte1, byte[] byte2) { argument
31 if (byte1 == null && byte2 != null) {
34 if (byte2 == null && byte1 != null) {
35 return byte1.length == 0;
37 return Arrays.equals(byte1, byte2);
/external/libunwind/src/ia64/
H A Dunwind_decoder.h109 unsigned char byte1, abreg; local
112 byte1 = *dp++;
115 abreg = (byte1 & 0x7f);
116 if (byte1 & 0x80)
126 unsigned char byte1, byte2, abreg, x, ytreg; local
129 byte1 = *dp++; byte2 = *dp++;
131 abreg = (byte1 & 0x7f);
133 x = (byte1 >> 7) & 1;
134 if ((byte1 & 0x80) == 0 && ytreg == 0)
144 unsigned char byte1, byte local
164 unsigned char byte1, byte2, byte3, qp, abreg, x, ytreg; local
196 unsigned char byte1, mask, grsave; local
232 unsigned char byte1 = *dp++; local
239 unsigned char byte1 = *dp++, r, dst; local
264 unw_word grmask, frmask, byte1, byte2, byte3; local
292 unsigned char r, byte1, byte2; local
[all...]
/external/valgrind/main/none/tests/s390x/
H A Dclcl.c155 uint8_t byte, byte1, byte2; local
164 byte1 = 10;
166 run_test(&byte1, 1, &byte2, 1, 0x00); // first operand low
167 run_test(&byte1, 1, &byte1, 1, 0x00); // equal
168 run_test(&byte2, 1, &byte1, 1, 0x00); // first operand high
169 run_test(&byte1, 1, &byte2, 1, 0xFF); // first operand low
170 run_test(&byte1, 1, &byte1, 1, 0xFF); // equal
171 run_test(&byte2, 1, &byte1,
[all...]
/external/chromium_org/components/autofill/core/browser/crypto/
H A Drc4_decryptor.h60 void SwapByte(uint8* byte1, uint8* byte2) { argument
61 uint8 temp = *byte1;
62 *byte1 = *byte2;
/external/dexmaker/src/dx/java/com/android/dx/io/instructions/
H A DInstructionCodec.java49 int literal = byte1(opcodeUnit); // should be zero
102 int a = byte1(opcodeUnit);
119 int target = (byte) byte1(opcodeUnit); // sign-extend
136 int literal = byte1(opcodeUnit); // should be zero
154 int literal = byte1(opcodeUnit);
172 int a = byte1(opcodeUnit);
192 int a = byte1(opcodeUnit);
210 int a = byte1(opcodeUnit);
229 int a = byte1(opcodeUnit);
259 int a = byte1(opcodeUni
1072 private static int byte1(int value) { method in class:InstructionCodec
[all...]
/external/valgrind/main/VEX/priv/
H A Dguest_s390_defs.h83 ULong s390_do_cu12_cu14_helper1(UInt byte1, UInt etf3_and_m3_is_1);
84 ULong s390_do_cu12_helper2(UInt byte1, UInt byte2, UInt byte3, UInt byte4,
86 ULong s390_do_cu14_helper2(UInt byte1, UInt byte2, UInt byte3, UInt byte4,
H A Dguest_s390_helpers.c603 UInt byte1 = (0xc0 | fghij); local
606 retval = (byte1 << 8) | byte2;
613 UInt byte1 = 0xe0 | abcd; local
617 retval = (byte1 << 16) | (byte2 << 8) | byte3;
625 UInt byte1 = 0xf0 | uvw; local
630 retval = (byte1 << 24) | (byte2 << 16) | (byte3 << 8) | byte4;
697 s390_do_cu12_cu14_helper2(UInt byte1, UInt byte2, UInt byte3, UInt byte4, argument
709 retval = byte1;
722 UInt fghij = byte1 & 0x1f;
733 if (byte1
829 s390_do_cu12_helper2(UInt byte1, UInt byte2, UInt byte3, UInt byte4, ULong stuff) argument
837 s390_do_cu14_helper2(UInt byte1, UInt byte2, UInt byte3, UInt byte4, ULong stuff) argument
[all...]
H A Dguest_s390_toIR.c11057 IRTemp byte1 = newTemp(Ity_I8); local
11065 assign(byte1, load(Ity_I8, mkexpr(address1)));
11074 binop(Iop_Xor8, mkexpr(byte1), mkexpr(end)),
11082 next_insn_if(binop(Iop_CmpEQ8, mkexpr(end), mkexpr(byte1)));
11090 next_insn_if(binop(Iop_CmpLT32U, unop(Iop_8Uto32, mkexpr(byte1)),
11096 unop(Iop_8Uto32, mkexpr(byte1))));
13629 s390_call_cu12_cu14_helper1(IRExpr *byte1, IRExpr *etf3_and_m3_is_1) argument
13632 args = mkIRExprVec_2(byte1, etf3_and_m3_is_1);
13643 s390_call_cu12_helper2(IRExpr *byte1, IRExpr *byte2, IRExpr *byte3, argument
13647 args = mkIRExprVec_5(byte1, byte
13658 s390_call_cu14_helper2(IRExpr *byte1, IRExpr *byte2, IRExpr *byte3, IRExpr *byte4, IRExpr *stuff) argument
13694 IRTemp byte1 = newTemp(Ity_I64); local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/glx/xlib/
H A Dglx_usefont.c59 printf("byte1 = (%u,%u)\n", font->min_byte1, font->max_byte1);
140 char2b.byte1 = (c >> 8) & 0xff;
167 unsigned int byte1 = 0, byte2 = 0; local
181 byte1 = which >> 8;
184 (fs->min_byte1 > byte1) || (fs->max_byte1 < byte1))
196 i = ((byte1 - fs->min_byte1) * pages) +
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dxfont.c65 printf("byte1 = (%u,%u)\n", font->min_byte1, font->max_byte1);
146 char2b.byte1 = (c >> 8) & 0xff;
173 int byte1 = 0, byte2 = 0; local
187 byte1 = which >> 8;
190 (fs->min_byte1 > byte1) || (fs->max_byte1 < byte1))
202 i = ((byte1 - fs->min_byte1) * pages) +
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/x11/
H A Dxfonts.c66 printf("byte1 = (%u,%u)\n", font->min_byte1, font->max_byte1);
147 char2b.byte1 = (c >> 8) & 0xff;
174 unsigned int byte1 = 0, byte2 = 0; local
188 byte1 = which >> 8;
191 (fs->min_byte1 > byte1) || (fs->max_byte1 < byte1))
203 i = ((byte1 - fs->min_byte1) * pages) +
/external/mesa3d/src/gallium/state_trackers/glx/xlib/
H A Dglx_usefont.c59 printf("byte1 = (%u,%u)\n", font->min_byte1, font->max_byte1);
140 char2b.byte1 = (c >> 8) & 0xff;
167 unsigned int byte1 = 0, byte2 = 0; local
181 byte1 = which >> 8;
184 (fs->min_byte1 > byte1) || (fs->max_byte1 < byte1))
196 i = ((byte1 - fs->min_byte1) * pages) +
/external/mesa3d/src/glx/
H A Dxfont.c65 printf("byte1 = (%u,%u)\n", font->min_byte1, font->max_byte1);
146 char2b.byte1 = (c >> 8) & 0xff;
173 int byte1 = 0, byte2 = 0; local
187 byte1 = which >> 8;
190 (fs->min_byte1 > byte1) || (fs->max_byte1 < byte1))
202 i = ((byte1 - fs->min_byte1) * pages) +
/external/mesa3d/src/mesa/drivers/x11/
H A Dxfonts.c66 printf("byte1 = (%u,%u)\n", font->min_byte1, font->max_byte1);
147 char2b.byte1 = (c >> 8) & 0xff;
174 unsigned int byte1 = 0, byte2 = 0; local
188 byte1 = which >> 8;
191 (fs->min_byte1 > byte1) || (fs->max_byte1 < byte1))
203 i = ((byte1 - fs->min_byte1) * pages) +
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/utf/
H A Dunicodetext.cc445 uint8 byte1 = static_cast<uint8>(it_[0]); local
446 if (byte1 < 0x80)
447 return byte1;
450 if (byte1 < 0xE0)
451 return ((byte1 & 0x1F) << 6)
455 if (byte1 < 0xF0)
456 return ((byte1 & 0x0F) << 12)
461 return ((byte1 & 0x07) << 18)
/external/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.cpp460 uint8_t byte1, byte2; local
462 if (consumeByte(insn, &byte1)) {
472 if ((insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) &&
473 ((~byte1 & 0xc) == 0xc) && ((byte2 & 0x4) == 0x4)) {
477 unconsumeByte(insn); /* unconsume byte1 */
484 insn->vectorExtensionPrefix[1] = byte1;
509 uint8_t byte1; local
511 if (lookAtByte(insn, &byte1)) {
516 if (insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) {
546 uint8_t byte1; local
584 uint8_t byte1; local
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
H A DChromeBrowserProvider.java871 private static boolean byteArrayEqual(byte[] byte1, byte[] byte2) { argument
872 if (byte1 == null && byte2 != null) return byte2.length == 0;
873 if (byte2 == null && byte1 != null) return byte1.length == 0;
874 return Arrays.equals(byte1, byte2);
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_crc32.c719 uint8_t byte0, byte1, byte2, byte3; local
731 byte1 = (result >> 8) & 0x000000ff;
734 crc32c = ((byte0 << 24) | (byte1 << 16) | (byte2 << 8) | byte3);
/external/pdfium/core/src/fpdfapi/fpdf_font/
H A Dfpdf_font_cid.cpp585 FX_BYTE byte1 = ((FX_LPBYTE)pString)[offset++]; local
586 if (!m_pLeadingBytes[byte1]) {
587 return byte1;
590 return byte1 * 256 + byte2;
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DToHTMLStream.java1257 int byte1 = 0xF0 | (uuuuu >> 2); // top 3 bits of uuuuu
1264 writer.write(makeHHString(byte1));
/external/pdfium/core/src/fpdfapi/fpdf_parser/
H A Dfpdf_parser_parser.cpp2438 FX_BYTE byte1, byte2; local
2439 GetCharAt(StreamStartPos + offset - 1, byte1);
2441 if (byte1 == 0x0a && byte2 == 0x0d) {
2443 } else if (byte1 == 0x0a || byte1 == 0x0d) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.equinox.security_1.0.200.v20100503.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/aztec/ ...

Completed in 591 milliseconds

12