Lines Matching defs:scaled
624 uint32_t scaled, estimate;
639 /* scaled = UInt('1':fraction<51:41>) */
640 scaled = deposit32(1 << 11, 0, 11, extract64(frac, 41, 11));
641 estimate = recip_estimate_incprec(scaled);
643 /* scaled = UInt('1':fraction<51:44>) */
644 scaled = deposit32(1 << 8, 0, 8, extract64(frac, 44, 8));
645 estimate = recip_estimate(scaled);
899 uint32_t scaled;
911 /* scaled = UInt('01':fraction<51:42>) */
912 scaled = deposit32(1 << 10, 0, 10, extract64(frac, 42, 10));
914 /* scaled = UInt('1':fraction<51:41>) */
915 scaled = deposit32(1 << 11, 0, 11, extract64(frac, 41, 11));
917 estimate = do_recip_sqrt_estimate_incprec(scaled);
920 /* scaled = UInt('01':fraction<51:45>) */
921 scaled = deposit32(1 << 7, 0, 7, extract64(frac, 45, 7));
923 /* scaled = UInt('1':fraction<51:44>) */
924 scaled = deposit32(1 << 8, 0, 8, extract64(frac, 44, 8));
926 estimate = do_recip_sqrt_estimate(scaled);