3 references to Log2
Aspire.Hosting.Tests (1)
ApplicationModel\GenerateParameterDefaultTests.cs (1)
64var entropyBits = defaultGenerator.MinLength * Math.Log2(choiceCount);
System.Private.CoreLib (2)
src\libraries\System.Private.CoreLib\src\System\Double.cs (2)
581public static double Log2(double value) => Math.Log2(value); 898public static double Log2P1(double x) => Math.Log2(x + 1);