Lines Matching full:gh
51 // Calculate final log answer as gh and gt,
52 // gh = l & higher-half bits
53 // gt = (((ltt - (lt - lth)) + ((lh - l) + lt)) + (l - gh))
59 // vs = ((yt*gt + yt*gh) + yh*gt)
60 // v = vs + yh*gh
61 // vt = ((yh*gh - v) + vs)
142 float gh = as_float(as_int(l) & 0xfffff000);
143 float gt = ((ltt - (lt - lth)) + ((lh - l) + lt)) + (l - gh);
152 float ylogx_s = __clc_mad(gt, yh, __clc_mad(gh, yt, yt * gt));
153 float ylogx = __clc_mad(yh, gh, ylogx_s);
154 float ylogx_t = __clc_mad(yh, gh, -ylogx) + ylogx_s;