HomeSort by relevance Sort by last modified time
    Searched defs:log2 (Results 1 - 25 of 220) sorted by null

1 2 3 4 5 6 7 8 9

  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
w_log2.c 19 * wrapper log2(X)
27 log2(double x) /* wrapper log10 */ function
37 return __kernel_standard(x,x,48); /* log2(0) */
39 return __kernel_standard(x,x,49); /* log2(x<0) */
  /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
s_log1p.S 117 movq log2(%rip), %xmm6
130 mulsd 8+log2(%rip), %xmm4
769 log2: label
774 .type log2,@object
775 .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
e_pow.S 37 // log2(x) calculation:
41 // LH is a short approximation for log2(e)
46 // log2(x) result: k - log2(B) + p(r)
48 // -log2(B) read from data table (high, low parts)
49 // log2(x) is formed from high and low parts
53 // Main path is taken if | floor(log2(|log2(|x|)|) + floor(log2|y|) | < 8,
55 // exp2(y*log2(x)) is computed using an 8-bit index table and a degree
4254 log2: label
    [all...]
  /external/ltp/testcases/kernel/controllers/cpuctl/
run_cpuctl_latency_test.sh 82 log2() function
103 log2 $num_cpus;
  /external/mesa3d/src/gallium/auxiliary/gallivm/
f.cpp 14 * for fast exp2/log2.
44 * - To compute log2 4th order polynomial between [0, 1/9] do:
67 boost::math::ntl::RR log2(const boost::math::ntl::RR& x) function
80 return log2((1.0 + sqrt(x))/(1.0 - sqrt(x)))/sqrt(x);
  /external/vulkan-validation-layers/libs/glm/detail/
_fixes.hpp 52 #ifdef log2
53 #undef log2 macro
  /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
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/detail/
_fixes.hpp 52 #ifdef log2
53 #undef log2 macro
  /external/swiftshader/src/OpenGL/libGL/
mathutil.h 30 inline int log2(int x) function in namespace:gl
  /external/swiftshader/src/OpenGL/libGLES_CM/
mathutil.h 30 inline int log2(int x) function in namespace:es1
  /external/swiftshader/src/OpenGL/libGLESv2/
mathutil.h 31 inline int log2(int x) function in namespace:es2
  /frameworks/av/media/libnblog/include/media/nblog/
ReportPerformance.h 54 static inline uint32_t log2(uint32_t x) { function in namespace:android::ReportPerformance
  /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/mesa3d/src/mapi/glapi/gen/
glX_server_table.py 33 def log2(value): function
79 bits = log2(opcode)
  /external/slf4j/slf4j-api/src/test/java/org/slf4j/helpers/
SubstituteLoggerFactoryTest.java 41 Logger log2 = factory.getLogger("foo"); local
42 assertTrue("Loggers with same name must be same", log == log2);
  /prebuilts/go/darwin-x86/src/sort/
search_test.go 60 // log2 computes the binary logarithm of x, rounded up to the next integer.
61 // (log2(0) == 0, log2(1) == 0, log2(2) == 1, log2(3) == 2, etc.)
63 func log2(x int) int { func
79 max := log2(n)
  /prebuilts/go/linux-x86/src/sort/
search_test.go 60 // log2 computes the binary logarithm of x, rounded up to the next integer.
61 // (log2(0) == 0, log2(1) == 0, log2(2) == 1, log2(3) == 2, etc.)
63 func log2(x int) int { func
79 max := log2(n)
  /external/guava/guava-gwt/test-super/com/google/common/math/super/com/google/common/math/
LongMathTest.java 62 LongMath.log2(0L, mode);
72 LongMath.log2(x, mode);
79 /* Relies on the correctness of BigIntegerMath.log2 for all modes except UNNECESSARY. */
84 assertEquals(BigIntegerMath.log2(valueOf(x), mode), LongMath.log2(x, mode));
95 assertEquals(x, 1L << LongMath.log2(x, UNNECESSARY));
  /external/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/
DoubleMath.java 62 * {@link #log2(double, RoundingMode)} is faster.
64 public static double log2(double x) { method in class:DoubleMath

Completed in 1407 milliseconds

1 2 3 4 5 6 7 8 9