Searched defs:rex (Results 1 – 2 of 2) sorted by relevance
| /f-stack/freebsd/amd64/amd64/ |
| H A D | db_disasm.c | 978 #define f_mod(rex, byte) ((byte)>>6) argument 979 #define f_reg(rex, byte) ((((byte)>>3)&0x7) | (rex & REX_R ? 0x8 : 0x0)) argument 980 #define f_rm(rex, byte) (((byte)&0x7) | (rex & REX_B ? 0x8 : 0x0)) argument 982 #define sib_ss(rex, byte) ((byte)>>6) argument 983 #define sib_index(rex, byte) ((((byte)>>3)&0x7) | (rex & REX_X ? 0x8 : 0x0)) argument 984 #define sib_base(rex, byte) (((byte)&0x7) | (rex & REX_B ? 0x8 : 0x0)) argument 1048 db_read_address(loc, short_addr, rex, regmodrm, addrp) in db_read_address() argument 1116 db_print_address(seg, size, rex, addrp) in db_print_address() argument 1148 db_disasm_esc(loc, inst, rex, short_addr, size, seg) in db_disasm_esc() argument 1255 int rex = 0; in db_disasm() local
|
| /f-stack/dpdk/lib/librte_bpf/ |
| H A D | bpf_jit_x86.c | 165 uint8_t rex; in emit_rex() local
|