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

1 2

  /external/mesa3d/src/gallium/auxiliary/gallivm/
f.cpp 14 * for fast exp2/log2.
34 * - For example, to compute exp2 5th order polynomial between [0, 1] do:
62 boost::math::ntl::RR exp2(const boost::math::ntl::RR& x) function
77 return exp2(x);
  /frameworks/av/media/libstagefright/codecs/amrwb/src/
voice_factor.cpp 127 int16 i, tmp, exp, ener1, exp1, ener2, exp2; local
139 ener2 = extract_h(Dot_product12(code, code, L_subfr, &exp2));
145 exp2 -= (exp << 1);
147 i = exp1 - exp2;
isf_extrapolation.cpp 123 int16 exp, exp2, hi, lo; local
226 exp2 = norm_s(tmp2);
230 tmp2 <<= exp2; local
232 exp = exp2 - exp;
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
voicefac.c 37 Word16 tmp, exp, ener1, exp1, ener2, exp2; local
53 ener2 = extract_h(Dot_product12_asm(code, code, L_subfr, &exp2));
55 ener2 = extract_h(Dot_product12(code, code, L_subfr, &exp2));
62 exp2 = exp2 - (exp + exp);
64 i = exp1 - exp2;
  /external/libcxx/test/std/utilities/function.objects/bind/func.bind/func.bind.bind/
bind_return_type.pass.cpp 68 Expect exp2 = ret(101, 102); local
73 assert(exp2 == 42);
79 assert(&exp2 == &dummy);
107 Expect exp2 = ret(101, 102); local
109 assert(exp2 == 42);
  /external/deqp/framework/common/
tcuInterval.cpp 123 Interval exp2 (const Interval& x) function in namespace:tcu
  /external/mesa3d/include/
c99_math.h 111 exp2(double d) function
  /frameworks/av/media/libeffects/testlibs/
EffectsMath.c 99 uint32_t exp2 = Effects_exp2(nGain); local
101 if (exp2 > 32767) exp2 = 32767;
103 return (int16_t)exp2;
  /bionic/libm/upstream-freebsd/lib/msun/src/
s_exp2.c 53 /* exp2(z + eps) eps */
313 * exp2(x): compute the base 2 exponential of x
321 * Thus we have exp2(x) = 2**k * exp2(y).
325 * Thus we have exp2(y) = exp2(i/TBLSIZE) * exp2(z - eps[i]),
328 * We compute exp2(i/TBLSIZE) via table lookup and exp2(z - eps[i]) via
331 * exp2t[i] = exp2(i/TBLSIZE + eps[i]), and eps[i] is a small offset suc
344 exp2(double x) function
    [all...]
  /external/arm-optimized-routines/math/
exp2.c 75 exp2 (double x) function
105 /* exp2(x) = 2^(k/N) * 2^r, with 2^r in [2^(-1/2N),2^(1/2N)]. */
117 /* exp2(x) = 2^(k/N) * 2^r ~= scale + scale * (tail + 2^r - 1). */
137 strong_alias (exp2, __exp2_finite)
138 hidden_alias (exp2, __ieee754_exp2)
  /cts/hostsidetests/jvmti/tagging/app/src/android/jvmti/cts/
JvmtiTaggingTest.java 99 GetTaggedObjectsExpectation exp2 = new GetTaggedObjectsExpectation(18); local
100 exp2.add(l.get(1), 1).add(l.get(11), 1).add(l.get(2), 2).add(l.get(12), 2).add(l.get(3), 3)
105 getTaggedObjectsRun(null, true, true, exp2);
  /external/swiftshader/src/Common/
Math.hpp 147 inline float exp2(float x) function in namespace:sw
152 inline int exp2(int x) function in namespace:sw
  /external/swiftshader/src/System/
Math.hpp 147 inline float exp2(float x) function in namespace:sw
152 inline int exp2(int x) function in namespace:sw
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/tests/
cpu_fusion_test.cc 289 // exp2 = exp(constant)
290 // negate2 = negate(exp2)
291 // tuple = tuple(negate1, negate2, exp2)
293 // exp1 should be fused down into negate1, but exp2 will not be fused into
295 // computation. The duplication is caused by the other use of exp2 in the
309 auto exp2 = builder.AddInstruction( local
312 HloInstruction::CreateUnary(shape, HloOpcode::kNegate, exp2));
315 HloInstruction::CreateTuple({negate1, negate2, exp2}));
330 // There should be three fused instructions: negate2, exp2, and the fused
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_cse_test.cc 229 auto exp2 = builder.AddInstruction(HloInstruction::CreateUnary( local
234 builder.AddInstruction(HloInstruction::CreateTuple({exp1, exp2, exp3}));
240 EXPECT_THAT(tuple, op::Tuple(exp1, exp2, exp3));
247 EXPECT_THAT(first_operand, ::testing::AnyOf(exp1, exp2, exp3));
435 auto exp2 = builder.AddInstruction(HloInstruction::CreateUnary( local
437 *exp2->mutable_shape()->mutable_layout() = LayoutUtil::MakeLayout({1, 0});
440 builder.AddInstruction(HloInstruction::CreateTuple({exp1, exp2}));
446 EXPECT_THAT(tuple, op::Tuple(exp1, exp2));
452 EXPECT_THAT(tuple, op::Tuple(exp1, exp2));
466 auto exp2 = builder.AddInstruction(HloInstruction::CreateUnary local
549 auto exp2 = builder.AddInstruction(HloInstruction::CreateUnary( local
    [all...]
  /external/deqp/modules/gles2/scripts/
genutil.py 169 def exp2(val): return val.applyUnary(lambda x: math.pow(2.0, x)) member in class:GenMath
  /external/deqp/modules/gles3/scripts/
genutil.py 179 def exp2(val): return val.applyUnary(lambda x: math.pow(2.0, x)) member in class:GenMath
  /external/deqp/modules/gles31/scripts/
genutil.py 179 def exp2(val): return val.applyUnary(lambda x: math.pow(2.0, x)) member in class:GenMath
  /external/clang/lib/Headers/
tgmath.h 662 // exp2
670 __tg_exp2(double __x) {return exp2(__x);}
676 #undef exp2 macro
677 #define exp2(__x) __tg_exp2(__tg_promote1((__x))(__x)) macro
  /external/deqp/external/openglcts/modules/gles31/
es31cProgramInterfaceQueryTests.cpp 1472 std::set<GLuint> exp2; local
1798 std::set<GLuint> exp2; local
2402 std::set<GLuint> exp2; local
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ListsTest.java 349 List<Object> exp2 = list((Object) 1, "4"); local
354 .has().exactly(exp1, exp2, exp3, exp4).inOrder();
SetsTest.java 436 List<Object> exp2 = list((Object) 1, "4"); local
441 .has().exactly(exp1, exp2, exp3, exp4).inOrder();
  /external/guava/guava-tests/test/com/google/common/collect/
ListsTest.java 573 List<Object> exp2 = list((Object) 1, "4"); local
578 .has().exactly(exp1, exp2, exp3, exp4).inOrder();
    [all...]
  /external/libcxx/test/std/depr/depr.c.headers/
math_h.pass.cpp 73 Ambiguous exp2(Ambiguous){ return Ambiguous(); } function
    [all...]
  /external/libcxx/test/std/numerics/c.math/
cmath.pass.cpp 75 Ambiguous exp2(Ambiguous){ return Ambiguous(); } function
    [all...]

Completed in 610 milliseconds

1 2