3 references to Log2
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Half.cs (1)
1236public static Half Log2(Half value) => (Half)MathF.Log2((float)value);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Single.cs (2)
576public static float Log2(float value) => MathF.Log2(value); 919public static float Log2P1(float x) => MathF.Log2(x + 1);