Lines Matching refs:h2
13 volatile __fp16 h0 = 0.0, h1 = 1.0, h2; variable
74 h1 = h0 * h2; in foo()
93 h1 = f0 * h2; in foo()
100 h1 = (h0 / h2); in foo()
118 h1 = (f0 / h2); in foo()
125 h1 = (h2 + h0); in foo()
137 h1 = (h2 + f0); in foo()
150 h1 = (h2 - h0); in foo()
162 h1 = (h2 - f0); in foo()
174 test = (h2 < h0); in foo()
179 test = (h2 < (__fp16)42.0); in foo()
184 test = (h2 < f0); in foo()
195 test = (h0 > h2); in foo()
200 test = ((__fp16)42.0 > h2); in foo()
210 test = (f0 > h2); in foo()
216 test = (h2 <= h0); in foo()
221 test = (h2 <= (__fp16)42.0); in foo()
226 test = (h2 <= f0); in foo()
237 test = (h0 >= h2); in foo()
252 test = (f0 >= h2); in foo()
258 test = (h1 == h2); in foo()
279 test = (h1 != h2); in foo()
302 h1 = (h1 ? h2 : h0); in foo()