HomeSort by relevance Sort by last modified time
    Searched full:double (Results 151 - 175 of 11433) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/llvm/test/Transforms/BBVectorize/
cycle.ll 6 ; %div77 = fdiv double %sub74, %mul76.v.r1 <-> %div125 = fdiv double %mul121, %mul76.v.r2 (div125 depends on mul117)
7 ; %add84 = fadd double %sub83, 2.000000e+00 <-> %add127 = fadd double %mul126, 1.000000e+00 (add127 depends on div77)
8 ; %mul95 = fmul double %sub45.v.r1, %sub36.v.r1 <-> %mul88 = fmul double %sub36.v.r1, %sub87 (mul88 depends on add84)
9 ; %mul117 = fmul double %sub39.v.r1, %sub116 <-> %mul97 = fmul double %mul96, %sub39.v.r1 (mul97 depends on mul95)
12 declare double @fabs(double) nounwind readnon
    [all...]
simple-int.ll 4 declare double @llvm.fma.f64(double, double, double)
5 declare double @llvm.cos.f64(double)
6 declare double @llvm.powi.f64(double, i32)
9 define double @test1(double %A1, double %A2, double %B1, double %B2, double %C1, double %C2)
    [all...]
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 52 /// double acos(double x);
56 /// double acosh(double x);
60 /// long double acoshl(long double x);
62 /// long double acosl(long double x);
64 /// double asin(double x)
    [all...]
  /external/llvm/test/Analysis/GlobalsModRef/
chaining-analysis.ll 8 declare double @sin(double) readnone
13 ; CHECK-NEXT: call double @doesnotmodX(double 1.000000e+00)
16 call double @doesnotmodX( double 1.000000e+00 ) ; <double>:1 [#uses=0]
21 define double @doesnotmodX(double %V) {
22 %V2 = call double @sin( double %V ) readnone ; <double> [#uses=1
    [all...]
  /external/llvm/test/CodeGen/Generic/
fneg-fabs.ll 3 define double @fneg(double %X) {
4 %Y = fsub double -0.000000e+00, %X ; <double> [#uses=1]
5 ret double %Y
13 declare double @fabs(double)
17 define double @fabstest(double %X) {
18 %Y = call double @fabs( double %X ) ; <double> [#uses=1
    [all...]
2009-03-29-SoftFloatVectorExtract.ll 4 @m = external global <2 x double>
6 define double @vector_ex() nounwind {
7 %v = load <2 x double>* @m
8 %x = extractelement <2 x double> %v, i32 1
9 ret double %x
isunord.ll 3 declare i1 @llvm.isunordered.f64(double, double)
5 define i1 @test(double %X, double %Y) {
6 %tmp27 = fcmp uno double %X, %Y ; <i1> [#uses=1]
  /external/llvm/test/CodeGen/Hexagon/
dadd.ll 2 ; Check that we generate double precision floating point add in V5.
9 %a = alloca double, align 8
10 %b = alloca double, align 8
11 %c = alloca double, align 8
12 store double 1.540000e+01, double* %a, align 8
13 store double 9.100000e+00, double* %b, align 8
14 %0 = load double* %a, align 8
15 %1 = load double* %b, align
    [all...]
dmul.ll 2 ; Check that we generate double precision floating point multiply in V5.
8 %a = alloca double, align 8
9 %b = alloca double, align 8
10 %c = alloca double, align 8
11 store double 1.540000e+01, double* %a, align 8
12 store double 9.100000e+00, double* %b, align 8
13 %0 = load double* %b, align 8
14 %1 = load double* %a, align
    [all...]
dsub.ll 2 ; Check that we generate double precision floating point subtract in V5.
8 %a = alloca double, align 8
9 %b = alloca double, align 8
10 %c = alloca double, align 8
11 store double 1.540000e+01, double* %a, align 8
12 store double 9.100000e+00, double* %b, align 8
13 %0 = load double* %b, align 8
14 %1 = load double* %a, align
    [all...]
  /external/llvm/test/CodeGen/X86/
masked-iv-unsafe.ll 9 define void @count_up(double* %d, i64 %n) nounwind {
16 %t0 = getelementptr double* %d, i64 %indvar.i8
17 %t1 = load double* %t0
18 %t2 = fmul double %t1, 0.1
19 store double %t2, double* %t0
21 %t3 = getelementptr double* %d, i64 %indvar.i24
22 %t4 = load double* %t3
23 %t5 = fmul double %t4, 2.3
24 store double %t5, double* %t
    [all...]
2009-03-12-CPAlignBug.ll 4 declare double @llvm.sqrt.f64(double) nounwind readonly
6 declare double @fabs(double)
8 declare double @llvm.pow.f64(double, double) nounwind readonly
10 define void @SolveCubic_bb1(i32* %solutions, double* %x, x86_fp80 %.reload, x86_fp80 %.reload5, x86_fp80 %.reload6, double %.reload8) nounwind {
19 %0 = tail call double @llvm.sqrt.f64(double %.reload8) ; <double> [#uses=1
    [all...]
fdiv.ll 3 define double @exact(double %x) {
7 %div = fdiv double %x, 2.0
8 ret double %div
11 define double @inexact(double %x) {
15 %div = fdiv double %x, 0x41DFFFFFFFC00000
16 ret double %div
19 define double @funky(double %x)
    [all...]
  /external/llvm/test/Transforms/Mem2Reg/
PromoteMemToRegister.ll 4 define double @testfunc(i32 %i, double %j) {
6 %J = alloca double ; <double*> [#uses=2]
8 store double %j, double* %J
13 %t4 = sitofp i32 %t3 to double ; <double> [#uses=1]
14 %t5 = load double* %J ; <double> [#uses=1
    [all...]
  /external/llvm/test/Transforms/SimplifyLibCalls/
floor.ll 17 ; C89-SIMPLIFY: call double @round(
18 ; C89-SIMPLIFY: call double @nearbyint(
20 ; DONT-SIMPLIFY: call double @floor(
21 ; DONT-SIMPLIFY: call double @ceil(
22 ; DONT-SIMPLIFY: call double @round(
23 ; DONT-SIMPLIFY: call double @nearbyint(
24 ; DONT-SIMPLIFY: call double @trunc(
25 ; DONT-SIMPLIFY: call double @fabs(
27 declare double @floor(double)
    [all...]
pow-to-sqrt.ll 19 ; CHECK: define double @doo(double %x) nounwind {
20 ; CHECK: %sqrt = call double @sqrt(double %x) nounwind readonly
21 ; CHECK: %fabs = call double @fabs(double %sqrt) nounwind readonly
22 ; CHECK: %1 = fcmp oeq double %x, 0xFFF0000000000000
23 ; CHECK: %retval = select i1 %1, double 0x7FF0000000000000, double %fabs
24 ; CHECK: ret double %retva
    [all...]
  /external/llvm/test/Transforms/TailCallElim/
inf-recursion.ll 5 ; CHECK: @fabs(double %f)
9 define double @fabs(double %f) {
11 %tmp2 = call double @fabs( double %f ) ; <double> [#uses=1]
12 ret double %tmp2
17 ; CHECK: define double @foo
20 define double @foo(double %f)
    [all...]
  /external/junit/src/org/junit/internal/
InexactComparisonCriteria.java 6 public double fDelta;
8 public InexactComparisonCriteria(double delta) {
14 if (expected instanceof Double)
15 Assert.assertEquals((Double)expected, (Double)actual, fDelta);
  /external/llvm/test/CodeGen/Mips/
frem.ll 9 define double @fmodd(double %x, double %y) {
11 %r = frem double %x, %y
12 ret double %r
  /external/llvm/test/CodeGen/PowerPC/
unsafe-math.ll 5 define double @foo(double %X) nounwind {
6 %tmp1 = fmul double %X, 1.23
7 %tmp2 = fmul double %tmp1, 4.124
8 ret double %tmp2
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
trsMatrix.h 26 double det33d(const double m[3][3]);
29 void inv33d(const double m[3][3], double out[3][3]);
32 void mult33d(double a[3][3], double b[3][3], double c[3][3]);
35 int normProjMat33d(double m[3][3]);
37 inline double ProjZ(double trs[3][3], double x, double y, double f
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
trsMatrix.h 26 double det33d(const double m[3][3]);
29 void inv33d(const double m[3][3], double out[3][3]);
32 void mult33d(double a[3][3], double b[3][3], double c[3][3]);
35 int normProjMat33d(double m[3][3]);
37 inline double ProjZ(double trs[3][3], double x, double y, double f
    [all...]
  /external/llvm/test/Analysis/BasicAA/
phi-and-select.ll 6 ; CHECK: NoAlias: double* %a, double* %b
8 ; CHECK: NoAlias: double* %a, double* %b
10 ; CHECK: NoAlias: double* %a, double* %b
12 ; CHECK: NoAlias: double* %a, double* %b
16 define void @foo(i1 %m, double* noalias %x, double* noalias %y)
    [all...]
  /external/llvm/test/CodeGen/ARM/
ret_f64_arg_reg_split.ll 3 define double @test_double_arg_reg_split(i32 %a1, double %a2) {
4 ret double %a2
ret_f64_arg_split.ll 3 define double @test_double_arg_split(i64 %a1, i32 %a2, double %a3) {
4 ret double %a3

Completed in 443 milliseconds

1 2 3 4 5 67 8 91011>>