3 references to ReciprocalSqrtEstimate
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1552public static Half ReciprocalSqrtEstimate(Half x) => (Half)MathF.ReciprocalSqrtEstimate((float)x);
src\libraries\System.Private.CoreLib\src\System\MathF.cs (1)
340return ReciprocalSqrtEstimate(x);
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
835public static float ReciprocalSqrtEstimate(float x) => MathF.ReciprocalSqrtEstimate(x);