/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/ |
p3-0x.cpp | 25 double ad[] = { 1, 2.0 }; 26 int ai[] = { 1, 2.0 }; // expected-error {{type 'double' cannot be narrowed to 'int' in initializer list}} expected-note {{override}} 30 double m2, m3; 34 S2 s22 { 1.0, 2, 3 }; // expected-error {{type 'double' cannot be narrowed to 'int' in initializer list}} expected-note {{override}} 40 S(std::initializer_list<double> d) {} 60 S(int, double, double) {} 72 S(std::initializer_list<double>) {} 80 const int& i2 = { 1.1 }; // expected-error {{type 'double' cannot be narrowed to 'int' in initializer list}} expected-note {{override}} expected-warning {{implicit conversion}} 86 int x2 {2.0}; // expected-error {{type 'double' cannot be narrowed to 'int' in initializer list}} expected-note {{override} [all...] |
/external/clang/test/CXX/lex/lex.literal/lex.ext/ |
p3.cpp | 6 double &operator "" _x1 (const char *); 14 double &operator "" _x2 (const char *); 15 double &i5 = 123123123123123123123123123123123123123123123_x2;
|
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
p18.cpp | 13 void A<int>::B<double>::mf1(T t) { } 16 void A<long>::B<double>::mf1(T t) { } // expected-error{{does not match}} 20 void A<Y>::B<double>::mf2() { } // expected-error{{does not refer}}
|
/external/clang/test/CodeGenOpenCL/ |
fpmath.cl | 19 double dpscalardiv(double a, double b) {
|
/external/clang/test/Parser/ |
implicit-casts.c | 2 _Complex double X; 8 double d = i; 9 double _Complex a = 5;
|
/external/clang/test/SemaCXX/ |
uninit-variables-conditional.cpp | 12 int init(double *); 17 double test() { 18 double x; // expected-note{{initialize the variable 'x' to silence this warning}}
|
/external/llvm/test/CodeGen/PowerPC/ |
longdbl-truncate.ll | 5 define double @SolveCubic(ppc_fp128 %X) { 7 %Y = fptrunc ppc_fp128 %X to double 8 ret double %Y
|
/external/llvm/test/CodeGen/X86/ |
2007-03-24-InlineAsmVectorOp.ll | 8 %tmp19 = tail call <2 x double> asm sideeffect "pcmpeqd $0, $0 \0A\09 cmpltsd $0, $0", "=x,0,~{dirflag},~{fpsr},~{flags}"( <2 x double> zeroinitializer ) ; <<2 x double>> [#uses=0]
|
2008-10-27-CoalescerBug.ll | 5 define fastcc void @fourn(double* %data, i32 %isign) nounwind { 28 %5 = fdiv double %11, 0.000000e+00 ; <double> [#uses=1] 29 %6 = tail call double @sin(double %5) nounwind readonly ; <double> [#uses=1] 36 %7 = fmul double 0.000000e+00, %6 ; <double> [#uses=0] 47 %11 = fmul double 0.000000e+00, 0x401921FB54442D1C ; <double> [#uses=1 [all...] |
2009-01-31-BigShift3.ll | 9 %struct.ObjPoint = type { double, double, double, double, double, double } 11 %struct.Point = type { double, double, double } 17 define fastcc void @ScaleObjectAdd(%struct.ObjectStruct* %o, double %sx, double %sy, double %sz) nounwind [all...] |
vec_fpext.ll | 5 define void @fpext_frommem(<2 x float>* %in, <2 x double>* %out) { 10 %1 = fpext <2 x float> %0 to <2 x double> 11 store <2 x double> %1, <2 x double>* %out, align 1 15 define void @fpext_frommem4(<4 x float>* %in, <4 x double>* %out) { 21 %1 = fpext <4 x float> %0 to <4 x double> 22 store <4 x double> %1, <4 x double>* %out, align 1 26 define void @fpext_frommem8(<8 x float>* %in, <8 x double>* %out) { 35 %1 = fpext <8 x float> %0 to <8 x double> [all...] |
/external/llvm/test/ExecutionEngine/ |
2003-01-04-ArgumentBug.ll | 4 define i32 @foo(i32 %X, i32 %Y, double %A) { 5 %cond212 = fcmp une double %A, 1.000000e+00 ; <i1> [#uses=1] 11 %reg212 = call i32 @foo( i32 0, i32 1, double 1.000000e+00 ) ; <i32> [#uses=1]
|
/external/llvm/test/ExecutionEngine/MCJIT/ |
2003-01-04-ArgumentBug.ll | 3 define i32 @foo(i32 %X, i32 %Y, double %A) { 4 %cond212 = fcmp une double %A, 1.000000e+00 ; <i1> [#uses=1] 10 %reg212 = call i32 @foo( i32 0, i32 1, double 1.000000e+00 ) ; <i32> [#uses=1]
|
/external/skia/bench/ |
BenchTimer.h | 30 double fCpu; 31 double fWall; 32 double fGpu;
|
/external/valgrind/main/VEX/useful/ |
fspill.c | 4 double qq ( void ) 6 long double a = 0.0, b = 0.0, c = 0.0, d = 0.0, e = 0.0, f = 0.0, g = 0.0, h = 0.0; 16 double r = qq();
|
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/ |
util.cpp | 18 double atof_dot(const char *str) 22 double result = _atof_l(str, l); 26 double result;
|
/external/webkit/Source/WebCore/html/ |
BaseDateAndTimeInputType.cpp | 50 static const double msecPerMinute = 60 * 1000; 51 static const double msecPerSecond = 1000; 53 double BaseDateAndTimeInputType::valueAsDate() const 58 void BaseDateAndTimeInputType::setValueAsDate(double value, ExceptionCode&) const 63 double BaseDateAndTimeInputType::valueAsNumber() const 65 return parseToDouble(element()->value(), numeric_limits<double>::quiet_NaN()); 68 void BaseDateAndTimeInputType::setValueAsNumber(double newValue, ExceptionCode&) const 85 const double nan = numeric_limits<double>::quiet_NaN(); 86 double doubleValue = parseToDouble(value, nan) [all...] |
/external/webkit/Source/WebCore/html/canvas/ |
Float64Array.h | 35 class Float64Array : public TypedArrayBase<double> { 38 static PassRefPtr<Float64Array> create(const double* array, unsigned length); 41 using TypedArrayBase<double>::set; 43 void set(unsigned index, double value) 45 if (index >= TypedArrayBase<double>::m_length) 47 TypedArrayBase<double>::data()[index] = static_cast<double>(value); 52 double item(unsigned index) const 54 ASSERT(index < TypedArrayBase<double>::m_length); 55 double result = TypedArrayBase<double>::data()[index] [all...] |
/frameworks/ml/bordeaux/learning/stochastic_linear_ranker/native/ |
stochastic_linear_ranker.h | 40 template<class Key = std::string, class Hash = std::hash_map<std::string, double> > 68 double GetIterationNumber() const { 71 double GetNormContraint() const { 77 double GetLambda() const { 99 double GetKernelParam() const { 102 double GetKernelGain() const { 105 double GetKernelBias() const { 111 double GetAcceptanceProbability() const { 117 void SetNormConstraint(const double norm) { 123 void SetLambda(double l) [all...] |
/external/llvm/test/CodeGen/ARM/ |
crash-greedy.ll | 7 declare double @exp(double) 12 %conv16 = fpext float %lambda to double 13 %mul17 = fmul double %conv16, -1.000000e+00 20 %mul = fmul double undef, 0.000000e+00 21 %add = fadd double undef, %mul 22 %add46 = fadd double undef, undef 23 %add75 = fadd double 0.000000e+00, undef 27 %conv78 = sitofp i32 %z to double 28 %conv83 = fpext float %c to double [all...] |
/packages/inputmethods/PinyinIME/jni/share/ |
ngram.cpp | 30 if (*static_cast<const double*>(p1) < *static_cast<const double*>(p2)) 32 if (*static_cast<const double*>(p1) > *static_cast<const double*>(p2)) 37 inline double distance(double freq, double code) { 43 int qsearch_nearest(double code_book[], double freq, int start, int end) { 61 size_t update_code_idx(double freqs[], size_t num, double code_book[] [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/tr1/ |
cmath | 427 inline long double 428 acosh(long double __x) 433 double>::__type 443 inline long double 444 asinh(long double __x) 449 double>::__type 460 inline long double 461 atanh(long double __x) 466 double>::__type 474 inline long double [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/tr1/ |
cmath | 427 inline long double 428 acosh(long double __x) 433 double>::__type 443 inline long double 444 asinh(long double __x) 449 double>::__type 460 inline long double 461 atanh(long double __x) 466 double>::__type 474 inline long double [all...] |
/external/llvm/test/Analysis/ScalarEvolution/ |
scev-aa.ll | 13 ; CHECK: NoAlias: double* %pi, double* %pi.next 15 define void @loop(double* nocapture %p, i64 %n) nounwind { 22 %pi = getelementptr double* %p, i64 %i 24 %pi.next = getelementptr double* %p, i64 %i.next 25 %x = load double* %pi 26 %y = load double* %pi.next 27 %z = fmul double %x, %y 28 store double %z, double* %p [all...] |
/external/guava/guava/src/com/google/common/util/concurrent/ |
AtomicDouble.java | 19 import static java.lang.Double.doubleToRawLongBits; 20 import static java.lang.Double.longBitsToDouble; 24 * A {@code double} value that may be updated atomically. See the 28 * and cannot be used as a replacement for a {@link Double}. However, 32 * <p><a name="bitEquals">This class compares primitive {@code double} 34 * bitwise representation using {@link Double#doubleToRawLongBits}, 35 * which differs from both the primitive double {@code ==} operator 36 * and from {@link Double#equals}, as if implemented by: 38 * static boolean bitEquals(double x, double y) [all...] |