Lines Matching full:scaled
612 uint32_t scaled, estimate; in call_recip_estimate() local
627 /* scaled = UInt('1':fraction<51:41>) */ in call_recip_estimate()
628 scaled = deposit32(1 << 11, 0, 11, extract64(frac, 41, 11)); in call_recip_estimate()
629 estimate = recip_estimate_incprec(scaled); in call_recip_estimate()
631 /* scaled = UInt('1':fraction<51:44>) */ in call_recip_estimate()
632 scaled = deposit32(1 << 8, 0, 8, extract64(frac, 44, 8)); in call_recip_estimate()
633 estimate = recip_estimate(scaled); in call_recip_estimate()
887 uint32_t scaled; in recip_sqrt_estimate() local
899 /* scaled = UInt('01':fraction<51:42>) */ in recip_sqrt_estimate()
900 scaled = deposit32(1 << 10, 0, 10, extract64(frac, 42, 10)); in recip_sqrt_estimate()
902 /* scaled = UInt('1':fraction<51:41>) */ in recip_sqrt_estimate()
903 scaled = deposit32(1 << 11, 0, 11, extract64(frac, 41, 11)); in recip_sqrt_estimate()
905 estimate = do_recip_sqrt_estimate_incprec(scaled); in recip_sqrt_estimate()
908 /* scaled = UInt('01':fraction<51:45>) */ in recip_sqrt_estimate()
909 scaled = deposit32(1 << 7, 0, 7, extract64(frac, 45, 7)); in recip_sqrt_estimate()
911 /* scaled = UInt('1':fraction<51:44>) */ in recip_sqrt_estimate()
912 scaled = deposit32(1 << 8, 0, 8, extract64(frac, 44, 8)); in recip_sqrt_estimate()
914 estimate = do_recip_sqrt_estimate(scaled); in recip_sqrt_estimate()