3 references to Cos
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
2236public static Half Cos(Half x) => (Half)MathF.Cos((float)x);
src\libraries\System.Private.CoreLib\src\System\Single.cs (1)
1750public static float Cos(float x) => MathF.Cos(x);
src\System\MathF.CoreCLR.cs (1)
97return (Sin(x), Cos(x));