Lines Matching refs:ha
54 __int32_t j, k, ha, hb; in hypot64() local
56 GET_HIGH_WORD(ha, x); in hypot64()
57 ha &= 0x7fffffff; in hypot64()
60 if (hb > ha) { in hypot64()
63 j = ha; in hypot64()
64 ha = hb; in hypot64()
70 SET_HIGH_WORD(a, ha); /* a <- |a| */ in hypot64()
72 if ((ha - hb) > 0x3c00000) { in hypot64()
76 if (ha > 0x5f300000) { /* a>2**500 */ in hypot64()
77 if (ha >= 0x7ff00000) { /* Inf or NaN */ in hypot64()
81 if (((ha & 0xfffff) | low) == 0 && !issignaling(b)) in hypot64()
89 ha -= 0x25800000; in hypot64()
92 SET_HIGH_WORD(a, ha); in hypot64()
107 ha += 0x25800000; /* a *= 2^600 */ in hypot64()
110 SET_HIGH_WORD(a, ha); in hypot64()
118 SET_HIGH_WORD(t1, ha); in hypot64()
127 SET_HIGH_WORD(t1, ha + 0x00100000); in hypot64()