/external/v8/src/ |
strtod.cc | 36 #include "double.h" 42 // Any integer with at most 15 decimal digits will hence fit into a double 48 // Max double: 1.7976931348623157 x 10^308 49 // Min non-zero double: 4.9406564584124654 x 10^-324 52 // Note that 2.5e-324 (despite being smaller than the min double) will be read 53 // as non-zero (equal to the min non-zero double). 61 static const double exact_powers_of_ten[] = { 177 double* result) { 180 // 80 bits wide (as is the case on Linux) then double-rounding occurs and the 189 // The trimmed input fits into a double [all...] |
/external/fdlibm/ |
e_jn.c | 43 static const double 45 static double 51 static double zero = 0.00000000000000000000e+00; 54 double __ieee754_jn(int n, double x) 56 double __ieee754_jn(n,x) 57 int n; double x; 61 double a, b, temp, di; 62 double z, w; 83 else if((double)n<=x) { [all...] |
e_log10.c | 50 static const double 52 static double 59 static double zero = 0.0; 62 double __ieee754_log10(double x) 64 double __ieee754_log10(x) 65 double x; 68 double y,z; 87 y = (double)(k+i);
|
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/ |
p5-0x.cpp | 93 double d = 2.0; 94 double& rd = d; 95 const double& rcd = d; 106 double& rd2 = 2.0; // expected-error{{non-const lvalue reference to type 'double' cannot bind to a temporary of type 'double'}} 108 double& rd3 = i; // expected-error{{non-const lvalue reference to type 'double' cannot bind to a value of unrelated type 'int'}} 123 const double& rcd2 = 2; 124 double&& rrd = 2 [all...] |
/external/clang/test/Sema/ |
conditional-expr.c | 3 *(0 ? (double *)0 : (void *)0) = 0; 5 *(0 ? (double *)0 : (void *)(int *)0) = 0; // expected-error {{incomplete type 'void' is not assignable}} 6 *(0 ? (double *)0 : (void *)(double *)0) = 0; // expected-error {{incomplete type 'void' is not assignable}} 7 *(0 ? (double *)0 : (int *)(void *)0) = 0; // expected-error {{incomplete type 'void' is not assignable}} expected-warning {{pointer type mismatch ('double *' and 'int *')}} 8 *(0 ? (double *)0 : (double *)(void *)0) = 0; 10 double *dp; 16 ip = dp; // expected-warning {{incompatible pointer types assigning to 'int *' from 'double *'}} [all...] |
/external/llvm/test/CodeGen/X86/ |
avx-load-store.ll | 10 define void @test_256_load(double* nocapture %d, float* nocapture %f, <4 x i64>* nocapture %i) nounwind uwtable ssp { 12 %0 = bitcast double* %d to <4 x double>* 13 %tmp1.i = load <4 x double>* %0, align 32 17 tail call void @dummy(<4 x double> %tmp1.i, <8 x float> %tmp1.i17, <4 x i64> %tmp1.i16) nounwind 18 store <4 x double> %tmp1.i, <4 x double>* %0, align 32 24 declare void @dummy(<4 x double>, <8 x float>, <4 x i64>) 38 define <4 x double> @mov01(<4 x double> %v, double * %ptr) nounwind [all...] |
/external/llvm/test/Transforms/LoopStrengthReduce/ |
2008-08-14-ShadowIV.ll | 1 ; RUN: opt < %s -loop-reduce -S | grep "phi double" | count 1 15 uitofp i32 %i.03 to double ; <double>:1 [#uses=1] 16 tail call void @foo( double %1 ) nounwind 25 ; Unable to eliminate cast because the mantissa bits for double are not enough 40 uitofp i64 %i.03 to double ; <double>:2 [#uses=1] 41 tail call void @foo( double %2 ) nounwind 60 uitofp i32 %i.03 to double ; <double>:2 [#uses=1 [all...] |
/external/webkit/Source/WebCore/css/ |
WebKitCSSMatrix.cpp | 106 PassRefPtr<WebKitCSSMatrix> WebKitCSSMatrix::translate(double x, double y, double z) const 117 PassRefPtr<WebKitCSSMatrix> WebKitCSSMatrix::scale(double scaleX, double scaleY, double scaleZ) const 128 PassRefPtr<WebKitCSSMatrix> WebKitCSSMatrix::rotate(double rotX, double rotY, double rotZ) const 146 PassRefPtr<WebKitCSSMatrix> WebKitCSSMatrix::rotateAxisAngle(double x, double y, double z, double angle) cons [all...] |
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/libexec/gcc/i686-linux/4.4.3/install-tools/ |
fixincl | |
/external/opencv/ml/include/ |
ml.h | 139 double** db; 149 double min_val; 150 double max_val; 151 double step; 155 CV_INLINE CvParamLattice cvParamLattice( double min_val, double max_val, 156 double log_step ) 224 CvParamGrid( double _min_val, double _max_val, double log_step [all...] |
/external/opencv/ml/src/ |
mlann_mlp.cpp | 55 double _param1, double _param2 ) 106 double _f_param1, double _f_param2 ) 134 void CvANN_MLP::set_activ_func( int _activ_func, double _f_param1, double _f_param2 ) 184 double val = 0, G = n2 > 2 ? 0.7*pow((double)n1,1./(n2-1)) : 1.; 185 double* w = weights[i]; 190 double s = 0 [all...] |
/external/icu4c/tools/ctestfw/unicode/ |
utimer.h | 51 * double timeTaken = 0; 58 * timeTaken = utimer_loopUntilDone((double)10,(void*) param, NormFn, &loopCount); 65 * double perfNormalization(NormFn fn,const char* mode,Line* fileLines,int32_t loopCount){ 72 * double elapsedTime = 0; 137 * double NFDTimeTaken, NFCTimeTaken, FCDTimeTaken; 178 double uprv_delta(UTimer* timer1, UTimer* timer2){ 179 return ((double)(timer2->start.QuadPart - timer1->start.QuadPart))/((double)timer1->placeHolder.QuadPart); 200 double uprv_delta(UTimer* timer1, UTimer* timer2){ 201 double t1, t2 [all...] |
/external/llvm/test/Analysis/ScalarEvolution/ |
nsw.ll | 8 define void @test1(double* %p) nounwind { 10 %tmp = load double* %p, align 8 ; <double> [#uses=1] 11 %tmp1 = fcmp ogt double %tmp, 2.000000e+00 ; <i1> [#uses=1] 22 %tmp3 = getelementptr double* %p, i64 %tmp2 ; <double*> [#uses=1] 23 %tmp4 = load double* %tmp3, align 8 ; <double> [#uses=1] 24 %tmp5 = fmul double %tmp4, 9.200000e+00 ; <double> [#uses=1 [all...] |
/sdk/hierarchyviewer2/libs/hierarchyviewerlib/src/com/android/hierarchyviewerlib/ui/util/ |
DrawableViewNode.java | 58 public double top; 67 public double x, y, width, height; 80 public Rectangle(double x, double y, double width, double height) { 95 public double x, y; 100 public Point(double x, double y) { 165 double currentTop = PADDING [all...] |
/bionic/libm/bsdsrc/ |
b_tgamma.c | 82 static double neg_gam(double); 83 static double small_gam(double); 84 static double smaller_gam(double); 85 static struct Double large_gam(double); 86 static struct Double ratfun_gam(double, double) [all...] |
/bionic/libm/man/ |
nextafter.3 | 50 .Ft double 51 .Fn nextafter "double x" "double y" 54 .Ft long double 55 .Fn nextafterl "long double x" "long double y" 56 .Ft double 57 .Fn nexttoward "double x" "long double y" 59 .Fn nexttowardf "float x" "long double y [all...] |
/bionic/libm/src/ |
s_nexttoward.c | 18 * We assume that a long double has a 15-bit exponent. On systems 19 * where long double is the same as double, nexttoward() is an alias 30 #error "Unsupported long double format" 33 double 34 nexttoward(double x, long double y) 37 volatile double t; 49 if(x==y) return (double)y; /* x=y, return y */
|
/cts/tools/dx-tests/src/dxc/junit/opcodes/d2f/ |
Test_d2f.java | 50 * @title Argument = Double.MAX_VALUE 54 assertEquals(Float.POSITIVE_INFINITY, t.run(Double.MAX_VALUE)); 58 * @title Argument = Double.MIN_VALUE 62 assertEquals(0f, t.run(Double.MIN_VALUE)); 78 assertTrue(Float.isNaN(t.run(Double.NaN))); 86 assertTrue(Float.isInfinite(t.run(Double.POSITIVE_INFINITY))); 94 assertTrue(Float.isInfinite(t.run(Double.NEGATIVE_INFINITY))); 99 * @title Argument = -Double.MIN_VALUE 122 * @title type of argument - double
|
/cts/tools/dx-tests/src/dxc/junit/opcodes/daload/ |
Test_daload.java | 30 double[] arr = new double[2]; 40 double[] arr = new double[2]; 50 double[] arr = new double[2]; 77 double[] arr = new double[2]; 114 * @title types of arguments - array, double
|
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/ |
ReadOnlyDoubleBufferTest.java | 81 double array[] = new double[1]; 89 buf.put((double[]) null); 97 double array[] = new double[1]; 105 buf.put((double[]) null, 0, 1); 111 buf.put(new double[buf.capacity() + 1], 0, buf.capacity() + 1); 148 buf.put(0, (double) 0); 154 buf.put(-1, (double) 0);
|
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/ |
p7-0x.cpp | 24 { 2, f(2), f(2.0) }; // OK: the double-to-int conversion is not at the top level 44 double d = 1.0; 45 long double ld = 1.0; 51 // * from long double to double or float, or from double to float, except where 59 double d = 1.0; 60 long double ld = 1.0; 67 Agg<float> f4 = {1.0}; // OK (double constant represented exactly) 68 Agg<float> f5 = {1.0L}; // OK (long double constant represented exactly [all...] |
/external/clang/test/CodeGenCXX/ |
x86_32-arguments.cpp | 18 double c; 70 // CHECK: define double @_Z2f2v() 71 struct s2_0 { double x; }; 75 // CHECK: define double @_Z2f3v() 77 struct s3_1 { double x; }; 100 // CHECK: define double @_Z2f7v() 102 struct s7_1 { double x; }; 108 struct s8_1 { double x; }; 114 struct s9_1 { double x; };
|
/external/clang/test/SemaCXX/ |
references.cpp | 35 double d = 2.0; 36 double& rd = d; // rd refers to d 37 const double& rcd = d; // rcd refers to d 47 double& rd2 = 2.0; // expected-error{{non-const lvalue reference to type 'double' cannot bind to a temporary of type 'double'}} 49 double& rd3 = i; // expected-error{{non-const lvalue reference to type 'double' cannot bind to a value of unrelated type 'int'}} 55 // const double& rcd2 = 2; // rcd2 refers to temporary with value 2.0
|
/external/llvm/test/CodeGen/PTX/ |
add.ll | 31 define ptx_device double @t1_f64(double %x, double %y) { 34 %z = fadd double %x, %y 35 ret double %z 66 define ptx_device double @t2_f64(double %x) { 69 %z = fadd double %x, 1.0 70 ret double %z
|
sub.ll | 31 define ptx_device double @t1_f64(double %x, double %y) { 34 %z = fsub double %x, %y 35 ret double %z 66 define ptx_device double @t2_f64(double %x) { 69 %z = fsub double %x, 1.0 70 ret double %z
|