Lines Matching defs:x
35 #define ANDIF(x, y) ((x) && (y)) argument
36 #define ORIF(x, y) ((x) || (y)) argument
38 #define SUBBI(x, y) ((x) - (y)) argument
39 #define ANDBI(x, y) ((x) & (y)) argument
40 #define ORBI(x, y) ((x) | (y)) argument
41 #define XORBI(x, y) ((x) ^ (y)) argument
42 #define NEGBI(x) (- (x)) argument
43 #define NOTBI(x) (! (BI) (x)) argument
44 #define INVBI(x) (~ (x)) argument
45 #define EQBI(x, y) ((BI) (x) == (BI) (y)) argument
46 #define NEBI(x, y) ((BI) (x) != (BI) (y)) argument
47 #define LTBI(x, y) ((BI) (x) < (BI) (y)) argument
48 #define LEBI(x, y) ((BI) (x) <= (BI) (y)) argument
49 #define GTBI(x, y) ((BI) (x) > (BI) (y)) argument
50 #define GEBI(x, y) ((BI) (x) >= (BI) (y)) argument
51 #define LTUBI(x, y) ((BI) (x) < (BI) (y)) argument
52 #define LEUBI(x, y) ((BI) (x) <= (BI) (y)) argument
53 #define GTUBI(x, y) ((BI) (x) > (BI) (y)) argument
54 #define GEUBI(x, y) ((BI) (x) >= (BI) (y)) argument
56 #define ADDQI(x, y) ((x) + (y)) argument
57 #define SUBQI(x, y) ((x) - (y)) argument
58 #define MULQI(x, y) ((x) * (y)) argument
59 #define DIVQI(x, y) ((QI) (x) / (QI) (y)) argument
60 #define UDIVQI(x, y) ((UQI) (x) / (UQI) (y)) argument
61 #define MODQI(x, y) ((QI) (x) % (QI) (y)) argument
62 #define UMODQI(x, y) ((UQI) (x) % (UQI) (y)) argument
63 #define SRAQI(x, y) ((QI) (x) >> (y)) argument
64 #define SRLQI(x, y) ((UQI) (x) >> (y)) argument
65 #define SLLQI(x, y) ((UQI) (x) << (y)) argument
68 #define ANDQI(x, y) ((x) & (y)) argument
69 #define ORQI(x, y) ((x) | (y)) argument
70 #define XORQI(x, y) ((x) ^ (y)) argument
71 #define NEGQI(x) (- (x)) argument
72 #define NOTQI(x) (! (QI) (x)) argument
73 #define INVQI(x) (~ (x)) argument
74 #define ABSQI(x) ((x) < 0 ? -(x) : (x)) argument
75 #define EQQI(x, y) ((QI) (x) == (QI) (y)) argument
76 #define NEQI(x, y) ((QI) (x) != (QI) (y)) argument
77 #define LTQI(x, y) ((QI) (x) < (QI) (y)) argument
78 #define LEQI(x, y) ((QI) (x) <= (QI) (y)) argument
79 #define GTQI(x, y) ((QI) (x) > (QI) (y)) argument
80 #define GEQI(x, y) ((QI) (x) >= (QI) (y)) argument
81 #define LTUQI(x, y) ((UQI) (x) < (UQI) (y)) argument
82 #define LEUQI(x, y) ((UQI) (x) <= (UQI) (y)) argument
83 #define GTUQI(x, y) ((UQI) (x) > (UQI) (y)) argument
84 #define GEUQI(x, y) ((UQI) (x) >= (UQI) (y)) argument
86 #define ADDHI(x, y) ((x) + (y)) argument
87 #define SUBHI(x, y) ((x) - (y)) argument
88 #define MULHI(x, y) ((x) * (y)) argument
89 #define DIVHI(x, y) ((HI) (x) / (HI) (y)) argument
90 #define UDIVHI(x, y) ((UHI) (x) / (UHI) (y)) argument
91 #define MODHI(x, y) ((HI) (x) % (HI) (y)) argument
92 #define UMODHI(x, y) ((UHI) (x) % (UHI) (y)) argument
93 #define SRAHI(x, y) ((HI) (x) >> (y)) argument
94 #define SRLHI(x, y) ((UHI) (x) >> (y)) argument
95 #define SLLHI(x, y) ((UHI) (x) << (y)) argument
98 #define ANDHI(x, y) ((x) & (y)) argument
99 #define ORHI(x, y) ((x) | (y)) argument
100 #define XORHI(x, y) ((x) ^ (y)) argument
101 #define NEGHI(x) (- (x)) argument
102 #define NOTHI(x) (! (HI) (x)) argument
103 #define INVHI(x) (~ (x)) argument
104 #define ABSHI(x) ((x) < 0 ? -(x) : (x)) argument
105 #define EQHI(x, y) ((HI) (x) == (HI) (y)) argument
106 #define NEHI(x, y) ((HI) (x) != (HI) (y)) argument
107 #define LTHI(x, y) ((HI) (x) < (HI) (y)) argument
108 #define LEHI(x, y) ((HI) (x) <= (HI) (y)) argument
109 #define GTHI(x, y) ((HI) (x) > (HI) (y)) argument
110 #define GEHI(x, y) ((HI) (x) >= (HI) (y)) argument
111 #define LTUHI(x, y) ((UHI) (x) < (UHI) (y)) argument
112 #define LEUHI(x, y) ((UHI) (x) <= (UHI) (y)) argument
113 #define GTUHI(x, y) ((UHI) (x) > (UHI) (y)) argument
114 #define GEUHI(x, y) ((UHI) (x) >= (UHI) (y)) argument
116 #define ADDSI(x, y) ((x) + (y)) argument
117 #define SUBSI(x, y) ((x) - (y)) argument
118 #define MULSI(x, y) ((x) * (y)) argument
119 #define DIVSI(x, y) ((SI) (x) / (SI) (y)) argument
120 #define UDIVSI(x, y) ((USI) (x) / (USI) (y)) argument
121 #define MODSI(x, y) ((SI) (x) % (SI) (y)) argument
122 #define UMODSI(x, y) ((USI) (x) % (USI) (y)) argument
123 #define SRASI(x, y) ((SI) (x) >> (y)) argument
124 #define SRLSI(x, y) ((USI) (x) >> (y)) argument
125 #define SLLSI(x, y) ((USI) (x) << (y)) argument
128 #define ANDSI(x, y) ((x) & (y)) argument
129 #define ORSI(x, y) ((x) | (y)) argument
130 #define XORSI(x, y) ((x) ^ (y)) argument
131 #define NEGSI(x) (- (x)) argument
132 #define NOTSI(x) (! (SI) (x)) argument
133 #define INVSI(x) (~ (x)) argument
134 #define ABSSI(x) ((x) < 0 ? -(x) : (x)) argument
135 #define EQSI(x, y) ((SI) (x) == (SI) (y)) argument
136 #define NESI(x, y) ((SI) (x) != (SI) (y)) argument
137 #define LTSI(x, y) ((SI) (x) < (SI) (y)) argument
138 #define LESI(x, y) ((SI) (x) <= (SI) (y)) argument
139 #define GTSI(x, y) ((SI) (x) > (SI) (y)) argument
140 #define GESI(x, y) ((SI) (x) >= (SI) (y)) argument
141 #define LTUSI(x, y) ((USI) (x) < (USI) (y)) argument
142 #define LEUSI(x, y) ((USI) (x) <= (USI) (y)) argument
143 #define GTUSI(x, y) ((USI) (x) > (USI) (y)) argument
144 #define GEUSI(x, y) ((USI) (x) >= (USI) (y)) argument
176 #define ADDDI(x, y) ((x) + (y)) argument
177 #define SUBDI(x, y) ((x) - (y)) argument
178 #define MULDI(x, y) ((x) * (y)) argument
179 #define DIVDI(x, y) ((DI) (x) / (DI) (y)) argument
180 #define UDIVDI(x, y) ((UDI) (x) / (UDI) (y)) argument
181 #define MODDI(x, y) ((DI) (x) % (DI) (y)) argument
182 #define UMODDI(x, y) ((UDI) (x) % (UDI) (y)) argument
183 #define SRADI(x, y) ((DI) (x) >> (y)) argument
184 #define SRLDI(x, y) ((UDI) (x) >> (y)) argument
185 #define SLLDI(x, y) ((UDI) (x) << (y)) argument
188 #define ANDDI(x, y) ((x) & (y)) argument
189 #define ORDI(x, y) ((x) | (y)) argument
190 #define XORDI(x, y) ((x) ^ (y)) argument
191 #define NEGDI(x) (- (x)) argument
192 #define NOTDI(x) (! (DI) (x)) argument
193 #define INVDI(x) (~ (x)) argument
194 #define ABSDI(x) ((x) < 0 ? -(x) : (x)) argument
195 #define EQDI(x, y) ((DI) (x) == (DI) (y)) argument
196 #define NEDI(x, y) ((DI) (x) != (DI) (y)) argument
197 #define LTDI(x, y) ((DI) (x) < (DI) (y)) argument
198 #define LEDI(x, y) ((DI) (x) <= (DI) (y)) argument
199 #define GTDI(x, y) ((DI) (x) > (DI) (y)) argument
200 #define GEDI(x, y) ((DI) (x) >= (DI) (y)) argument
201 #define LTUDI(x, y) ((UDI) (x) < (UDI) (y)) argument
202 #define LEUDI(x, y) ((UDI) (x) <= (UDI) (y)) argument
203 #define GTUDI(x, y) ((UDI) (x) > (UDI) (y)) argument
204 #define GEUDI(x, y) ((UDI) (x) >= (UDI) (y)) argument
207 #define EXTBIQI(x) ((QI) (BI) (x)) argument
208 #define EXTBIHI(x) ((HI) (BI) (x)) argument
209 #define EXTBISI(x) ((SI) (BI) (x)) argument
213 #define EXTBIDI(x) ((DI) (BI) (x)) argument
215 #define EXTQIHI(x) ((HI) (QI) (x)) argument
216 #define EXTQISI(x) ((SI) (QI) (x)) argument
220 #define EXTQIDI(x) ((DI) (QI) (x)) argument
222 #define EXTHIHI(x) ((HI) (HI) (x)) argument
223 #define EXTHISI(x) ((SI) (HI) (x)) argument
224 #define EXTSISI(x) ((SI) (SI) (x)) argument
228 #define EXTHIDI(x) ((DI) (HI) (x)) argument
233 #define EXTSIDI(x) ((DI) (SI) (x)) argument
236 #define ZEXTBIQI(x) ((QI) (BI) (x)) argument
237 #define ZEXTBIHI(x) ((HI) (BI) (x)) argument
238 #define ZEXTBISI(x) ((SI) (BI) (x)) argument
242 #define ZEXTBIDI(x) ((DI) (BI) (x)) argument
244 #define ZEXTQIHI(x) ((HI) (UQI) (x)) argument
245 #define ZEXTQISI(x) ((SI) (UQI) (x)) argument
249 #define ZEXTQIDI(x) ((DI) (UQI) (x)) argument
251 #define ZEXTHISI(x) ((SI) (UHI) (x)) argument
252 #define ZEXTHIHI(x) ((HI) (UHI) (x)) argument
253 #define ZEXTSISI(x) ((SI) (USI) (x)) argument
257 #define ZEXTHIDI(x) ((DI) (UHI) (x)) argument
262 #define ZEXTSIDI(x) ((DI) (USI) (x)) argument
265 #define TRUNCQIBI(x) ((BI) (QI) (x)) argument
266 #define TRUNCHIBI(x) ((BI) (HI) (x)) argument
267 #define TRUNCHIQI(x) ((QI) (HI) (x)) argument
268 #define TRUNCSIBI(x) ((BI) (SI) (x)) argument
269 #define TRUNCSIQI(x) ((QI) (SI) (x)) argument
270 #define TRUNCSIHI(x) ((HI) (SI) (x)) argument
271 #define TRUNCSISI(x) ((SI) (SI) (x)) argument
275 #define TRUNCDIBI(x) ((BI) (DI) (x)) argument
280 #define TRUNCDIQI(x) ((QI) (DI) (x)) argument
285 #define TRUNCDIHI(x) ((HI) (DI) (x)) argument
290 #define TRUNCDISI(x) ((SI) (DI) (x)) argument