HomeSort by relevance Sort by last modified time
    Searched refs:log2 (Results 26 - 50 of 524) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/v8/src/base/
ieee754.h 52 V8_BASE_EXPORT double log2(double x);
  /external/vulkan-validation-layers/libs/glm/detail/
func_exponential.hpp 96 /// @param x log2 function is defined for input values of x defined in the range (0, inf+) in the limit of the type precision.
99 /// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/log2.xml">GLSL log2 man page</a>
102 GLM_FUNC_DECL genType log2(genType x);
  /external/vulkan-validation-layers/libs/glm/gtx/
integer.hpp 61 //! Returns the log2 of x. Can be reliably using to compute mipmap count from the texture size.
64 GLM_FUNC_DECL genIUType log2(genIUType x);
66 //! Returns the floor log2 of x.
  /frameworks/av/media/libnblog/include/media/nblog/
ReportPerformance.h 54 static inline uint32_t log2(uint32_t x) { function in namespace:android::ReportPerformance
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/detail/
func_exponential.hpp 96 /// @param x log2 function is defined for input values of x defined in the range (0, inf+) in the limit of the type precision.
99 /// @see <a href="http://www.opengl.org/sdk/docs/manglsl/xhtml/log2.xml">GLSL log2 man page</a>
102 GLM_FUNC_DECL genType log2(genType x);
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/gtx/
integer.hpp 61 //! Returns the log2 of x. Can be reliably using to compute mipmap count from the texture size.
64 GLM_FUNC_DECL genIUType log2(genIUType x);
66 //! Returns the floor log2 of x.
  /tools/tradefederation/core/tests/src/com/android/tradefed/result/
FileMetadataCollectorTest.java 86 LogFile log2 = LogFile.newBuilder().setLogType(LOG_TYPE_BR).setName(NAME_BR2).build(); local
88 .addLogFiles(log1).addLogFiles(log2).build();
107 LogFile log2 = LogFile.newBuilder().setLogType(LOG_TYPE_BR).setName(NAME_BR2).build(); local
111 .addLogFiles(log1).addLogFiles(log2).addLogFiles(log3).addLogFiles(log4).build();
  /external/guava/guava/src/com/google/common/math/
BigIntegerMath.java 69 public static int log2(BigInteger x, RoundingMode mode) { method in class:BigIntegerMath
96 * Since sqrt(2) is irrational, log2(x) - logFloor cannot be exactly 0.5
135 int approxLog10 = (int) (log2(x, FLOOR) * LN_2 / LN_10);
263 int log2 = log2(x, FLOOR); local
264 if (log2 < Double.MAX_EXPONENT) {
267 int shift = (log2 - DoubleUtils.SIGNIFICAND_BITS) & ~1; // even!
325 int approxSize = IntMath.divide(n * IntMath.log2(n, CEILING), Long.SIZE, CEILING);
335 // Use floor(log2(num)) + 1 to prevent overflow of multiplication.
336 int productBits = LongMath.log2(product, FLOOR) + 1
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/math/
BigIntegerMathRoundingBenchmark.java 54 @Benchmark int log2(int reps) { method in class:BigIntegerMathRoundingBenchmark
58 tmp += BigIntegerMath.log2(positive[j], mode);
DoubleMathBenchmark.java 47 @Benchmark long log2(int reps) { method in class:DoubleMathBenchmark
51 tmp += Double.doubleToRawLongBits(DoubleMath.log2(positiveDoubles[j]));
IntMathRoundingBenchmark.java 54 @Benchmark int log2(int reps) { method in class:IntMathRoundingBenchmark
58 tmp += IntMath.log2(positive[j], mode);
LongMathRoundingBenchmark.java 54 @Benchmark int log2(int reps) { method in class:LongMathRoundingBenchmark
58 tmp += LongMath.log2(positive[j], mode);
  /external/ltp/testcases/kernel/controllers/cpuctl/
run_cpuctl_latency_test.sh 82 log2() function
103 log2 $num_cpus;
  /external/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/
BigIntegerMath.java 67 public static int log2(BigInteger x, RoundingMode mode) { method in class:BigIntegerMath
94 * Since sqrt(2) is irrational, log2(x) - logFloor cannot be exactly 0.5
142 int approxSize = IntMath.divide(n * IntMath.log2(n, CEILING), Long.SIZE, CEILING);
152 // Use floor(log2(num)) + 1 to prevent overflow of multiplication.
153 int productBits = LongMath.log2(product, FLOOR) + 1;
154 int bits = LongMath.log2(startingNumber, FLOOR) + 1;
160 // Check to see if the floor(log2(num)) + 1 has changed.
169 // Adjust floor(log2(num)) + 1.
178 productBits = LongMath.log2(product, FLOOR) + 1;
233 int bits = LongMath.log2(n, RoundingMode.CEILING)
    [all...]
  /bionic/libm/x86_64/
e_log.S 101 movq log2(%rip), %xmm6
112 mulsd 8+log2(%rip), %xmm7
735 log2: label
740 .type log2,@object
741 .size log2,16
e_log10.S 106 movq log2(%rip), %xmm6
117 mulsd 8+log2(%rip), %xmm7
763 log2: label
768 .type log2,@object
769 .size log2,16
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
rewrite_test.go 91 }{{0, -1}, // nlz expects log2(0) == -1
101 if got := log2(tc.v); got != tc.exp {
102 t.Errorf("expected log2(%d) = %d, got %d", tc.v, tc.exp, got)
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
rewrite_test.go 91 }{{0, -1}, // nlz expects log2(0) == -1
101 if got := log2(tc.v); got != tc.exp {
102 t.Errorf("expected log2(%d) = %d, got %d", tc.v, tc.exp, got)
  /external/libffi/src/powerpc/
asm.h 38 #define ALIGNARG(log2) log2
  /external/python/cpython2/Modules/_ctypes/libffi/src/powerpc/
asm.h 38 #define ALIGNARG(log2) log2
  /external/python/cpython3/Modules/_ctypes/libffi/src/powerpc/
asm.h 38 #define ALIGNARG(log2) log2
  /external/testng/kobalt/wrapper/
kobalt-wrapper.jar 
  /prebuilts/go/darwin-x86/src/math/
log10.go 15 // Log2 returns the binary logarithm of x.
17 func Log2(x float64) float64
19 func log2(x float64) float64 { func
  /prebuilts/go/linux-x86/src/math/
log10.go 15 // Log2 returns the binary logarithm of x.
17 func Log2(x float64) float64
19 func log2(x float64) float64 { func
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_log2.c 23 * log2(x) = (f - 0.5*f*f + k_log1p(f)) / ln2 + k
116 __weak_reference(log2, log2l);

Completed in 299 milliseconds

12 3 4 5 6 7 8 91011>>