Lines Matching refs:h2
16 volatile __fp16 h0 = 0.0, h1 = 1.0, h2; variable
77 h1 = h0 * h2; in foo()
96 h1 = f0 * h2; in foo()
108 h1 = (h0 / h2); in foo()
126 h1 = (f0 / h2); in foo()
138 h1 = (h2 + h0); in foo()
150 h1 = (h2 + f0); in foo()
168 h1 = (h2 - h0); in foo()
180 h1 = (h2 - f0); in foo()
197 test = (h2 < h0); in foo()
202 test = (h2 < (__fp16)42.0); in foo()
207 test = (h2 < f0); in foo()
226 test = (h0 > h2); in foo()
231 test = ((__fp16)42.0 > h2); in foo()
241 test = (f0 > h2); in foo()
255 test = (h2 <= h0); in foo()
260 test = (h2 <= (__fp16)42.0); in foo()
265 test = (h2 <= f0); in foo()
285 test = (h0 >= h2); in foo()
300 test = (f0 >= h2); in foo()
314 test = (h1 == h2); in foo()
343 test = (h1 != h2); in foo()
374 h1 = (h1 ? h2 : h0); in foo()