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