Lines Matching refs:gh
50 // Calculate final log answer as gh and gt,
51 // gh = l & higher-half bits
52 // gt = (((ltt - (lt - lth)) + ((lh - l) + lt)) + (l - gh))
58 // vs = ((yt*gt + yt*gh) + yh*gt)
59 // v = vs + yh*gh
60 // vt = ((yh*gh - v) + vs)
138 float gh = as_float(as_int(l) & 0xfffff000);
139 float gt = ((ltt - (lt - lth)) + ((lh - l) + lt)) + (l - gh);
145 float ylogx_s = mad(gt, yh, mad(gh, yt, yt*gt));
146 float ylogx = mad(yh, gh, ylogx_s);
147 float ylogx_t = mad(yh, gh, -ylogx) + ylogx_s;