Searched defs:byte1 (Results 1 - 25 of 32) sorted by relevance

12

/external/valgrind/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/dng_sdk/source/
H A Ddng_iptc.cpp277 uint32 byte1 = stream.Get_uint8 (); local
281 if (byte1 == 27 /* Escape */ &&
H A Ddng_image_writer.cpp3437 uint8 byte1 = (uint8) (code >> shift1); local
3448 *dstPtr1 |= byte1;
3450 *dstPtr1 = byte1;
3467 *dstPtr1 |= byte1;
3469 *dstPtr1 = byte1;
/external/libtextclassifier/util/utf8/
H A Dunicodetext.cc250 unsigned char byte1 = static_cast<unsigned char>(it_[0]); local
251 if (byte1 < 0x80) return byte1;
254 if (byte1 < 0xE0) return ((byte1 & 0x1F) << 6) | (byte2 & 0x3F);
257 if (byte1 < 0xF0) {
258 return ((byte1 & 0x0F) << 12) | ((byte2 & 0x3F) << 6) | (byte3 & 0x3F);
262 return ((byte1 & 0x07) << 18) | ((byte2 & 0x3F) << 12) |
/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/mesa3d/src/gallium/state_trackers/glx/xlib/
H A Dglx_usefont.c60 printf("byte1 = (%u,%u)\n", font->min_byte1, font->max_byte1);
141 char2b.byte1 = (c >> 8) & 0xff;
168 unsigned int byte1 = 0, byte2 = 0; local
182 byte1 = which >> 8;
185 (fs->min_byte1 > byte1) || (fs->max_byte1 < byte1))
197 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.c60 printf("byte1 = (%u,%u)\n", font->min_byte1, font->max_byte1);
141 char2b.byte1 = (c >> 8) & 0xff;
168 unsigned int byte1 = 0, byte2 = 0; local
182 byte1 = which >> 8;
185 (fs->min_byte1 > byte1) || (fs->max_byte1 < byte1))
197 i = ((byte1 - fs->min_byte1) * pages) +
/external/oj-libjdwp/src/share/npt/
H A Dutf.c210 unsigned byte1; local
212 byte1 = (unsigned char)string[i];
215 if ( (byte1 & 0x80) == 0 ) { /* 1byte encoding */
216 if ( byte1 == 0 ) {
222 newString[j++] = byte1;
224 } else if ( (byte1 & 0xE0) == 0xC0 ) { /* 2byte encoding */
225 newString[j++] = byte1;
227 } else if ( (byte1 & 0xF0) == 0xE0 ) { /* 3byte encoding */
228 newString[j++] = byte1;
231 } else if ( (byte1
274 unsigned byte1, byte2, byte3, byte4, byte5, byte6; local
341 unsigned byte1, byte2, byte3, byte4, byte5, byte6; local
[all...]
/external/pdfium/core/fpdfapi/font/
H A Dcpdf_cmap.cpp349 uint8_t byte1 = pBytes[offset++]; local
350 return 256 * byte1 + pBytes[offset++];
353 uint8_t byte1 = pBytes[offset++]; local
354 if (!m_MixedTwoByteLeadingBytes[byte1])
355 return byte1;
356 return 256 * byte1 + pBytes[offset++];
/external/protobuf/java/core/src/main/java/com/google/protobuf/
H A DUtf8.java132 // int state = byte1 ^ (byte2 << 8) ^ (byte3 << 16);
135 // undo byte1's sign-extension bits):
137 // int byte1 = (byte) state;
144 // a state, we ensure that byte1 is negative and subsequent bytes
193 private static int incompleteStateFor(int byte1) { argument
194 return (byte1 > (byte) 0xF4) ?
195 MALFORMED : byte1;
198 private static int incompleteStateFor(int byte1, int byte2) { argument
199 return (byte1 > (byte) 0xF4 ||
201 MALFORMED : byte1
204 incompleteStateFor(int byte1, int byte2, int byte3) argument
221 incompleteStateFor( final ByteBuffer buffer, final int byte1, final int index, final int remaining) argument
1549 unsafeIncompleteStateFor(byte[] bytes, int byte1, long offset, int remaining) argument
1568 unsafeIncompleteStateFor(long address, final int byte1, int remaining) argument
[all...]
/external/syslinux/gpxe/src/drivers/net/
H A Dipoib.c327 uint8_t byte1; member in struct:ipoib_eth_addr_handler
355 if ( ( handler->byte1 == guid->u.bytes[1] ) &&
/external/capstone/arch/X86/
H A DX86DisassemblerDecoder.c682 uint8_t byte1, byte2; local
684 if (consumeByte(insn, &byte1)) {
689 if ((insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) &&
690 ((~byte1 & 0xc) == 0xc)) {
699 unconsumeByte(insn); /* unconsume byte1 */
706 insn->vectorExtensionPrefix[1] = byte1;
733 unconsumeByte(insn); /* unconsume byte1 */
737 uint8_t byte1; local
739 if (lookAtByte(insn, &byte1)) {
744 if (insn->mode == MODE_64BIT || (byte1
770 uint8_t byte1; local
802 uint8_t byte1; local
[all...]
/external/llvm/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.cpp454 uint8_t byte1, byte2; local
456 if (consumeByte(insn, &byte1)) {
466 if ((insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) &&
467 ((~byte1 & 0xc) == 0xc) && ((byte2 & 0x4) == 0x4)) {
470 unconsumeByte(insn); /* unconsume byte1 */
477 insn->vectorExtensionPrefix[1] = byte1;
501 uint8_t byte1; local
503 if (lookAtByte(insn, &byte1)) {
508 if (insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) {
536 uint8_t byte1; local
571 uint8_t byte1; local
[all...]
/external/pdfium/core/fpdfapi/parser/
H A Dcpdf_syntax_parser.cpp513 unsigned char byte1 = 0; local
516 GetCharAt(pos, byte1);
519 if (byte1 == '\r' && byte2 == '\n')
522 if (byte1 == '\r' || byte1 == '\n')
/external/swiftshader/third_party/LLVM/lib/Target/X86/Disassembler/
H A DX86DisassemblerDecoder.c387 uint8_t byte1; local
389 if (lookAtByte(insn, &byte1)) {
394 if (insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) {
431 uint8_t byte1; local
433 if (lookAtByte(insn, &byte1)) {
438 if (insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) {
/external/syslinux/com32/cmenu/libmenu/
H A Ddes.c580 my_u_int32_t byte0, byte1, byte2, byte3; local
582 byte1 = (my_u_int32_t) (my_u_char_t) key[1];
586 return byte0 << 24 | byte1 << 16 | byte2 << 8 | byte3;
/external/valgrind/VEX/priv/
H A Dguest_s390_helpers.c605 UInt byte1 = (0xc0 | fghij); local
608 retval = (byte1 << 8) | byte2;
615 UInt byte1 = 0xe0 | abcd; local
619 retval = (byte1 << 16) | (byte2 << 8) | byte3;
627 UInt byte1 = 0xf0 | uvw; 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
711 retval = byte1;
724 UInt fghij = byte1 & 0x1f;
735 if (byte1
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 Dguest_s390_toIR.c11272 IRTemp byte1 = newTemp(Ity_I8); local
11280 assign(byte1, load(Ity_I8, mkexpr(address1)));
11289 binop(Iop_Xor8, mkexpr(byte1), mkexpr(end)),
11297 next_insn_if(binop(Iop_CmpEQ8, mkexpr(end), mkexpr(byte1)));
11305 next_insn_if(binop(Iop_CmpLT32U, unop(Iop_8Uto32, mkexpr(byte1)),
11311 unop(Iop_8Uto32, mkexpr(byte1))));
13926 s390_call_cu12_cu14_helper1(IRExpr *byte1, IRExpr *etf3_and_m3_is_1) argument
13929 args = mkIRExprVec_2(byte1, etf3_and_m3_is_1);
13940 s390_call_cu12_helper2(IRExpr *byte1, IRExpr *byte2, IRExpr *byte3, argument
13944 args = mkIRExprVec_5(byte1, byte
13955 s390_call_cu14_helper2(IRExpr *byte1, IRExpr *byte2, IRExpr *byte3, IRExpr *byte4, IRExpr *stuff) argument
13991 IRTemp byte1 = newTemp(Ity_I64); local
[all...]
/external/freetype/src/psaux/
H A Dpsintrp.c2892 CF2_Int byte1 = cf2_buf_readByte( charstring ); local
2896 v = (FT_Short)( ( byte1 << 8 ) |
2959 FT_UInt32 byte1 = (FT_UInt32)cf2_buf_readByte( charstring ); local
2965 v = (CF2_Fixed)( ( byte1 << 24 ) |
/external/vixl/src/aarch64/
H A Dmacro-assembler-aarch64.cc949 int byte1 = (imm & 0xff); local
951 if (byte1 == byte2) {
952 movi(vd.Is64Bits() ? vd.V8B() : vd.V16B(), byte1);
953 } else if (byte1 == 0) {
956 movi(vd, byte1);
957 } else if (byte1 == 0xff) {
960 mvni(vd, ~byte1 & 0xff);
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...
/external/kotlinc/lib/
H A Dkotlin-reflect.jarMETA-INF/MANIFEST.MF kotlin/reflect/jvm/internal/ReflectProperties$LazyVal.class ReflectProperties.java package ...
/external/testng/ant/
H A Divy-2.1.0.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE META-INF/NOTICE fr/ fr/ ...
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...

Completed in 4054 milliseconds

12