Searched refs:exp2 (Results 1 - 18 of 18) sorted by relevance

/external/clang/test/CodeGen/
H A Dlibcalls-d.c4 // RUN: %clang_cc1 %s -emit-llvm -fno-math-errno -O0 -o - | grep {call.*exp2\\.f64}
5 // RUN: %clang_cc1 %s -emit-llvm -fmath-errno -O0 -o - | grep {call.*exp2}
7 // RUN: %clang_cc1 %s -emit-llvm -O3 -fno-builtin -o - | grep {call.*exp2}
12 double exp2(double);
15 return exp2(x);
H A Dlibcall-declarations.c29 double exp2(double);
82 exp, expl, expf, exp2, exp2l, exp2f, fabs, fabsl, fabsf, floor, floorl,
113 // CHECK-NOERRNO: declare double @exp2(double) nounwind readnone
/external/llvm/include/llvm/Target/
H A DTargetLibraryInfo.h134 /// double exp2(double x);
135 exp2, enumerator in enum:llvm::LibFunc::Func
380 case LibFunc::exp2: case LibFunc::exp2f: case LibFunc::exp2l:
/external/chromium/testing/gtest/scripts/
H A Dpump.py402 def __init__(self, identifier=None, exp1=None, exp2=None):
405 self.exp2 = exp2
666 upper = int(env.EvalExp(node.exp2))
/external/gtest/scripts/
H A Dpump.py402 def __init__(self, identifier=None, exp1=None, exp2=None):
405 self.exp2 = exp2
666 upper = int(env.EvalExp(node.exp2))
/external/llvm/lib/Target/
H A DTargetLibraryInfo.cpp83 "exp2",
260 TLI.setUnavailable(LibFunc::exp2);
/external/llvm/lib/CodeGen/
H A DIntrinsicLowering.cpp158 case Intrinsic::exp2:
159 EnsureFPIntrinsicsExist(M, I, "exp2f", "exp2", "exp2l");
515 case Intrinsic::exp2: {
516 ReplaceFPIntrinsicWithCall(CI, "exp2f", "exp2", "exp2l");
/external/clang/lib/Headers/
H A Dtgmath.h662 // 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/clang/lib/include/
H A Dtgmath.h662 // 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/guava/guava-tests/test/com/google/common/collect/
H A DSetsTest.java652 List<Object> exp2 = list((Object) 1, "4");
656 ASSERT.that(Sets.<Object>cartesianProduct(x, y)).hasContentsAnyOrder(exp1, exp2, exp3, exp4);
/external/mesa3d/src/glsl/
H A Dir_reader.cpp769 s_expression *exp2 = (s_expression*) (exp1->next); local
770 arg2 = read_rvalue(st, exp2);
/external/icu4c/test/intltest/
H A Dcaltest.cpp2097 UnicodeString exp2 = UNICODE_STRING_SIMPLE("Mon 1 Rajab 1433 AH, 01:47:04"); local
2132 if ( act2 != exp2 ) {
H A Dusettest.cpp170 const char* exp2[] = {"aa", "ab", "ac", NOT, "xy", NULL}; local
171 expectToPattern(*s, "[a-z{aa}{ab}{ac}]", exp2);
/external/llvm/lib/Analysis/
H A DConstantFolding.cpp1140 return Name == "exp" || Name == "exp2";
1274 if (Name == "exp2" && TLI->has(LibFunc::exp2)) {
1275 // Constant fold exp2(x) as pow(2,x) in case the host doesn't have a
/external/eigen/unsupported/test/mpreal/
H A Dmpreal.h334 friend const mpreal exp2 (const mpreal& v, mp_rnd_t rnd_mode = mpreal::default_rnd);
1754 inline const mpreal exp2(const mpreal& v, mp_rnd_t rnd_mode) function in namespace:mpfr
/external/llvm/lib/Transforms/Scalar/
H A DSimplifyLibCalls.cpp986 if (Op1C->isExactlyValue(2.0)) // pow(2.0, x) -> exp2(x)
987 return EmitUnaryFloatFnCall(Op2, "exp2", B, Callee->getAttributes());
1025 // 'exp2' Optimizations
1030 if (UnsafeFPShrink && Callee->getName() == "exp2" &&
1031 TLI->has(LibFunc::exp2)) {
1044 // Turn exp2(sitofp(x)) -> ldexp(1.0, sext(x)) if sizeof(x) <= 32
1045 // Turn exp2(uitofp(x)) -> ldexp(1.0, zext(x)) if sizeof(x) < 32
1683 Optimizations["exp2"] = &Exp2;
1685 Optimizations["llvm.exp2.ppcf128"] = &Exp2;
1686 Optimizations["llvm.exp2
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp519 case Intrinsic::exp2:
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp4114 /// visitExp2 - Lower an exp2 intrinsic. Handles the special sequences for
4960 case Intrinsic::exp2:
5706 case LibFunc::exp2:

Completed in 1898 milliseconds