Lines Matching refs:h2
22 volatile __fp16 h0 = 0.0, h1 = 1.0, h2; variable
99 h1 = h0 * h2; in foo()
120 h1 = f0 * h2; in foo()
137 h1 = (h0 / h2); in foo()
158 h1 = (f0 / h2); in foo()
175 h1 = (h2 + h0); in foo()
190 h1 = (h2 + f0); in foo()
213 h1 = (h2 - h0); in foo()
228 h1 = (h2 - f0); in foo()
250 test = (h2 < h0); in foo()
259 test = (h2 < (__fp16)42.0); in foo()
264 test = (h2 < f0); in foo()
292 test = (h0 > h2); in foo()
301 test = ((__fp16)42.0 > h2); in foo()
311 test = (f0 > h2); in foo()
334 test = (h2 <= h0); in foo()
343 test = (h2 <= (__fp16)42.0); in foo()
348 test = (h2 <= f0); in foo()
377 test = (h0 >= h2); in foo()
395 test = (f0 >= h2); in foo()
418 test = (h1 == h2); in foo()
460 test = (h1 != h2); in foo()
503 h1 = (h1 ? h2 : h0); in foo()