Lines Matching refs:h2
18 volatile __fp16 h0 = 0.0, h1 = 1.0, h2; variable
77 h1 = h0 * h2; in foo()
94 h1 = f0 * h2; in foo()
106 h1 = (h0 / h2); in foo()
123 h1 = (f0 / h2); in foo()
135 h1 = (h2 + h0); in foo()
146 h1 = (h2 + f0); in foo()
164 h1 = (h2 - h0); in foo()
175 h1 = (h2 - f0); in foo()
192 test = (h2 < h0); in foo()
196 test = (h2 < (__fp16)42.0); in foo()
201 test = (h2 < f0); in foo()
220 test = (h0 > h2); in foo()
224 test = ((__fp16)42.0 > h2); in foo()
234 test = (f0 > h2); in foo()
248 test = (h2 <= h0); in foo()
252 test = (h2 <= (__fp16)42.0); in foo()
257 test = (h2 <= f0); in foo()
277 test = (h0 >= h2); in foo()
291 test = (f0 >= h2); in foo()
305 test = (h1 == h2); in foo()
333 test = (h1 != h2); in foo()
363 h1 = (h1 ? h2 : h0); in foo()