Home
last modified time | relevance | path

Searched defs:byte (Results 1 – 1 of 1) sorted by relevance

/sys/amd64/
Ddisasm.c933 #define f_mod(rex, byte) ((byte)>>6) argument
934 #define f_reg(rex, byte) ((((byte)>>3)&0x7) | (rex & REX_R ? 0x8 : 0x0)) argument
935 #define f_rm(rex, byte) (((byte)&0x7) | (rex & REX_B ? 0x8 : 0x0)) argument
937 #define sib_ss(rex, byte) ((byte)>>6) argument
938 #define sib_index(rex, byte) ((((byte)>>3)&0x7) | (rex & REX_X ? 0x8 : 0x0)) argument
939 #define sib_base(rex, byte) (((byte)&0x7) | (rex & REX_B ? 0x8 : 0x0)) argument