3 references to ReciprocalEstimate
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1549public static Half ReciprocalEstimate(Half x) => (Half)MathF.ReciprocalEstimate((float)x);
src\libraries\System.Private.CoreLib\src\System\MathF.cs (1)
322return ReciprocalEstimate(x);
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
831public static float ReciprocalEstimate(float x) => MathF.ReciprocalEstimate(x);