| /openbsd-src/gnu/llvm/lldb/source/Symbol/ |
| H A D | ArmUnwindInfo.cpp | 136 uint8_t byte1 = GetByteAtOffset(data, byte_offset++); in GetUnwindPlan() local 137 if ((byte1 & 0xc0) == 0x00) { in GetUnwindPlan() 140 vsp += ((byte1 & 0x3f) << 2) + 4; in GetUnwindPlan() 141 } else if ((byte1 & 0xc0) == 0x40) { in GetUnwindPlan() 144 vsp -= ((byte1 & 0x3f) << 2) + 4; in GetUnwindPlan() 145 } else if ((byte1 & 0xf0) == 0x80) { in GetUnwindPlan() 150 if (byte1 == 0x80 && byte2 == 0) { in GetUnwindPlan() 158 uint16_t regs = ((byte1 & 0x0f) << 8) | byte2; in GetUnwindPlan() 166 } else if ((byte1 & 0xff) == 0x9d) { in GetUnwindPlan() 170 } else if ((byte1 & 0xff) == 0x9f) { in GetUnwindPlan() [all …]
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/binutils/ |
| H A D | unwind-ia64.c | 590 unsigned char byte1, abreg; in unw_decode_x1() local 593 byte1 = *dp++; in unw_decode_x1() 596 abreg = (byte1 & 0x7f); in unw_decode_x1() 597 if (byte1 & 0x80) in unw_decode_x1() 608 unsigned char byte1, byte2, abreg, x, ytreg; in unw_decode_x2() local 611 byte1 = *dp++; in unw_decode_x2() 614 abreg = (byte1 & 0x7f); in unw_decode_x2() 616 x = (byte1 >> 7) & 1; in unw_decode_x2() 617 if ((byte1 & 0x80) == 0 && ytreg == 0) in unw_decode_x2() 628 unsigned char byte1, byte2, abreg, qp; in unw_decode_x3() local [all …]
|
| /openbsd-src/gnu/usr.bin/binutils/binutils/ |
| H A D | unwind-ia64.c | 590 unsigned char byte1, abreg; in unw_decode_x1() local 593 byte1 = *dp++; in unw_decode_x1() 596 abreg = (byte1 & 0x7f); in unw_decode_x1() 597 if (byte1 & 0x80) in unw_decode_x1() 608 unsigned char byte1, byte2, abreg, x, ytreg; in unw_decode_x2() local 611 byte1 = *dp++; in unw_decode_x2() 614 abreg = (byte1 & 0x7f); in unw_decode_x2() 616 x = (byte1 >> 7) & 1; in unw_decode_x2() 617 if ((byte1 & 0x80) == 0 && ytreg == 0) in unw_decode_x2() 628 unsigned char byte1, byte2, abreg, qp; in unw_decode_x3() local [all …]
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/config/ia64/ |
| H A D | unwind-ia64.c | 1065 unsigned char byte1, abreg; in unw_decode_x1() local 1068 byte1 = *dp++; in unw_decode_x1() 1071 abreg = (byte1 & 0x7f); in unw_decode_x1() 1072 if (byte1 & 0x80) in unw_decode_x1() 1084 unsigned char byte1, byte2, abreg, x, ytreg; in unw_decode_x2() local 1087 byte1 = *dp++; byte2 = *dp++; in unw_decode_x2() 1089 abreg = (byte1 & 0x7f); in unw_decode_x2() 1091 x = (byte1 >> 7) & 1; in unw_decode_x2() 1092 if ((byte1 & 0x80) == 0 && ytreg == 0) in unw_decode_x2() 1104 unsigned char byte1, byte2, abreg, qp; in unw_decode_x3() local [all …]
|
| /openbsd-src/gnu/gcc/gcc/config/ia64/ |
| H A D | unwind-ia64.c | 1070 unsigned char byte1, abreg; in unw_decode_x1() local 1073 byte1 = *dp++; in unw_decode_x1() 1076 abreg = (byte1 & 0x7f); in unw_decode_x1() 1077 if (byte1 & 0x80) in unw_decode_x1() 1089 unsigned char byte1, byte2, abreg, x, ytreg; in unw_decode_x2() local 1092 byte1 = *dp++; byte2 = *dp++; in unw_decode_x2() 1094 abreg = (byte1 & 0x7f); in unw_decode_x2() 1096 x = (byte1 >> 7) & 1; in unw_decode_x2() 1097 if ((byte1 & 0x80) == 0 && ytreg == 0) in unw_decode_x2() 1109 unsigned char byte1, byte2, abreg, qp; in unw_decode_x3() local [all …]
|
| /openbsd-src/gnu/llvm/compiler-rt/lib/hwasan/ |
| H A D | hwasan_linux.cpp | 411 uint8_t byte1 = *((u8 *)(pc + 0)); in GetAccessInfo() 415 uint32_t ebreak = (byte1 | (byte2 << 8) | (byte3 << 16) | (byte4 << 24)); in GetAccessInfo() 428 byte1 = *((u8 *)(pc + 0)); in GetAccessInfo() 433 uint32_t instr = (byte1 | (byte2 << 8) | (byte3 << 16) | (byte4 << 24)); in GetAccessInfo() 468 uint8_t byte1 = (uint8_t)(*(exception_source + 0)); in HwasanOnSIGTRAP() local 472 uint32_t faulted = (byte1 | (byte2 << 8) | (byte3 << 16) | (byte4 << 24)); in HwasanOnSIGTRAP()
|
| /openbsd-src/gnu/usr.bin/perl/ext/XS-APItest/t/ |
| H A D | utf8_warn_base.pl | 806 for my $byte1 (@bytes) { 808 last if $byte2 && ! $byte1; # Don't test empty preceding byte 810 last if $byte2 && $byte1 < 0xC0; # No need to test more than a 816 last if $byte3 && $byte1 < 0xE0; # Only test 3 bytes for 830 last if $byte4 && $byte1 < 0xF0; # Only test 4 bytes for 842 last if $byte5 && $byte1 < 0xF8; # Only test 5 bytes for 855 $string .= chr $byte1 if $byte1; 863 last if $byte1 >= ((isASCII) ? 0xF6 : 0xFA);
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/X86/Disassembler/ |
| H A D | X86Disassembler.cpp | 326 uint8_t byte1, byte2; in readPrefixes() local 327 if (consume(insn, byte1)) { in readPrefixes() 337 if ((insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) && in readPrefixes() 338 ((~byte1 & 0x8) == 0x8) && ((byte2 & 0x4) == 0x4)) { in readPrefixes() 347 insn->vectorExtensionPrefix[1] = byte1; in readPrefixes() 373 uint8_t byte1; in readPrefixes() local 374 if (peek(insn, byte1)) { in readPrefixes() 379 if (insn->mode == MODE_64BIT || (byte1 & 0xc0) == 0xc0) in readPrefixes() 404 uint8_t byte1; in readPrefixes() local 405 if (peek(insn, byte1)) { in readPrefixes() [all …]
|
| /openbsd-src/sys/dev/pci/bktr/ |
| H A D | bktr_core.h | 53 int i2cWrite( bktr_ptr_t bktr, int addr, int byte1, int byte2 );
|
| H A D | bktr_core.c | 3597 i2cWrite( bktr_ptr_t bktr, int addr, int byte1, int byte2 ) in i2cWrite() argument 3609 data = ((addr & 0xff) << 24) | ((byte1 & 0xff) << 16) | I2C_COMMAND; in i2cWrite() 3611 data = ((addr & 0xff) << 24) | ((byte1 & 0xff) << 16) | I2C_COMMAND_878; in i2cWrite()
|
| /openbsd-src/usr.sbin/vmd/ |
| H A D | vioscsi.h | 84 u_int8_t byte1; member
|
| /openbsd-src/sys/dev/pci/drm/amd/display/dc/ |
| H A D | dc_dp_types.h | 571 uint8_t byte1; member 578 uint8_t byte1; member 585 uint8_t byte1; member
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/bfd/ |
| H A D | elf-m10300.c | 3324 unsigned char byte1, byte2; local 3335 byte1 = bfd_get_8 (abfd, contents + addr); 3338 if (byte1 == 0xcf) 3342 byte1 = bfd_get_8 (abfd, contents + addr); 3389 if (byte1 == 0xf8 && byte2 == 0xfe) 3396 else if (byte1 == 0xfa && byte2 == 0xfe)
|
| /openbsd-src/gnu/usr.bin/binutils/bfd/ |
| H A D | elf-m10300.c | 3473 unsigned char byte1, byte2; local 3484 byte1 = bfd_get_8 (abfd, contents + addr); 3487 if (byte1 == 0xcf) 3491 byte1 = bfd_get_8 (abfd, contents + addr); 3538 if (byte1 == 0xf8 && byte2 == 0xfe) 3545 else if (byte1 == 0xfa && byte2 == 0xfe)
|
| /openbsd-src/sys/dev/ic/ |
| H A D | advlib.h | 365 ASC_SCSI_INQ1 byte1; member
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/cpu/ |
| H A D | sh64-compact.cpu | 1674 (sequence ((UHI top-half) (UQI byte1) (UQI byte0)) 1676 (set byte1 (subword QI rm 2)) 1678 (set rn (or SI (sll SI top-half 16) (or SI (sll SI byte0 8) byte1)))))
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/gas/doc/ |
| H A D | c-arm.texi | 509 @item .raw @var{offset}, @var{byte1}, @dots{}
|
| /openbsd-src/sys/dev/pci/ |
| H A D | arc.c | 279 u_int8_t byte1; member
|
| /openbsd-src/gnu/usr.bin/binutils/ |
| H A D | md5.sum | 2738 7b0c24ccc1d934109f844141088eaadc gas/testsuite/gas/mmix/err-byte1.s
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/ |
| H A D | md5.sum | 3408 f3cda197e002842b0c3ce05aa49d7fca gas/testsuite/gas/mmix/err-byte1.s
|