Lines Matching defs:i

60 #define IMM_H(i)		((uintptr_t)(i)>>16)  argument
61 #define IMM_HA(i) (((uintptr_t)(i)>>16) + \ argument
63 #define IMM_L(i) ((uintptr_t)(i) & 0xffff) argument
73 #define PPC_ADDI(d, a, i) EMIT(PPC_INST_ADDI | __PPC_RT(d) | \ argument
76 #define PPC_LI(r, i) PPC_ADDI(r, 0, i) argument
77 #define PPC_ADDIS(d, a, i) EMIT(PPC_INST_ADDIS | \ argument
79 #define PPC_LIS(r, i) PPC_ADDIS(r, 0, i) argument
80 #define PPC_STD(r, base, i) EMIT(PPC_INST_STD | __PPC_RS(r) | \ argument
83 #define PPC_LD(r, base, i) EMIT(PPC_INST_LD | __PPC_RT(r) | \ argument
85 #define PPC_LWZ(r, base, i) EMIT(PPC_INST_LWZ | __PPC_RT(r) | \ argument
87 #define PPC_LHZ(r, base, i) EMIT(PPC_INST_LHZ | __PPC_RT(r) | \ argument
90 #define PPC_LD_OFFS(r, base, i) do { if ((i) < 32768) PPC_LD(r, base, i); \ argument
94 #define PPC_LWZ_OFFS(r, base, i) do { if ((i) < 32768) PPC_LWZ(r, base, i); \ argument
98 #define PPC_LHZ_OFFS(r, base, i) do { if ((i) < 32768) PPC_LHZ(r, base, i); \ argument
102 #define PPC_CMPWI(a, i) EMIT(PPC_INST_CMPWI | __PPC_RA(a) | IMM_L(i)) argument
103 #define PPC_CMPDI(a, i) EMIT(PPC_INST_CMPDI | __PPC_RA(a) | IMM_L(i)) argument
104 #define PPC_CMPLWI(a, i) EMIT(PPC_INST_CMPLWI | __PPC_RA(a) | IMM_L(i)) argument
115 #define PPC_MULI(d, a, i) EMIT(PPC_INST_MULLI | __PPC_RT(d) | \ argument
121 #define PPC_ANDI(d, a, i) EMIT(PPC_INST_ANDI | __PPC_RA(d) | \ argument
127 #define PPC_ORI(d, a, i) EMIT(PPC_INST_ORI | __PPC_RA(d) | \ argument
129 #define PPC_ORIS(d, a, i) EMIT(PPC_INST_ORIS | __PPC_RA(d) | \ argument
136 #define PPC_SLWI(d, a, i) EMIT(PPC_INST_RLWINM | __PPC_RA(d) | \ argument
140 #define PPC_SRWI(d, a, i) EMIT(PPC_INST_RLWINM | __PPC_RA(d) | \ argument
144 #define PPC_SLDI(d, a, i) EMIT(PPC_INST_RLDICR | __PPC_RA(d) | \ argument
157 #define PPC_LI32(d, i) do { PPC_LI(d, IMM_L(i)); \ argument
161 #define PPC_LI64(d, i) do { \ argument