3 references to ReciprocalEstimate
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1596public static Half ReciprocalEstimate(Half x) => (Half)MathF.ReciprocalEstimate((float)x);
src\runtime\src\libraries\System.Private.CoreLib\src\System\MathF.cs (1)
320return ReciprocalEstimate(x);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
847public static float ReciprocalEstimate(float x) => MathF.ReciprocalEstimate(x);