Searched defs:Double (Results 1 - 25 of 34) sorted by relevance

12

/external/chromium_org/testing/gtest/samples/
H A Dsample3_unittest.cc91 static int Double(int n) { function in class:QueueTest
99 const Queue<int> * const new_q = q->Map(Double);
/external/protobuf/gtest/samples/
H A Dsample3_unittest.cc91 static int Double(int n) { function in class:QueueTest
99 const Queue<int> * const new_q = q->Map(Double);
/external/clang/test/Sema/
H A Doverloadable.c54 typedef double Double; typedef
55 typedef Double DoubleVec __attribute__((vector_size(16)));
H A Dcast.c23 typedef double Double; typedef
36 (void) (Double) v;
50 (void) (Double) v;
72 (void) (Double) v;
86 (void) (Double) v;
93 void testDouble(Double v) {
98 (void) (Double) v;
110 (void) (Double) v;
122 (void) (Double) v;
134 (void) (Double)
[all...]
/external/clang/test/SemaCXX/
H A Dpseudo-destructors.cpp8 typedef double Double; typedef
47 i->Integer::~Double(); // expected-error{{the type of object expression ('int') does not match the type being destroyed ('Double' (aka 'double')) in pseudo-destructor expression}}
H A Dmissing-namespace-qualifier-typo-corrections.cpp10 int Double(int x) { return x + x; } function
12 Double(toFoobar()); // expected-error{{use of undeclared identifier 'toFoobar'; did you mean 'barstool::toFoobar'?}}
26 if (toFoobar()) Double(7); // expected-error{{use of undeclared identifier 'toFoobar'; did you mean 'barstool::toFoobar'?}}
27 if (noFoobar()) Double(7); // expected-error{{use of undeclared identifier 'noFoobar'; did you mean 'barstool::toFoobar'?}}
28 if (moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'moreFoobar'; did you mean 'fizbin::nested::moreFoobar'}}
29 if (lessFoobar()) Double(7); // expected-error{{use of undeclared identifier 'lessFoobar'; did you mean 'fizbin::nested::lessFoobar'?}}
30 if (baztool::toFoobar()) Double(7); // expected-error{{use of undeclared identifier 'baztool'; did you mean 'fizbin::baztool'?}}
31 if (nested::moreFoobar()) Double(7); // expected-error{{use of undeclared identifier 'nested'; did you mean 'fizbin::nested'?}}
32 if (dummy::morebar()) Double(7); // expected-error{{use of undeclared identifier 'dummy'; did you mean 'fizbin::dummy'?}}
33 if (dummy::mrebar()) Double(
[all...]
H A Dconstant-expression-cxx11.cpp243 constexpr int Double(int n) { return 2 * n; } function in namespace:FunctionPointers
246 constexpr int Quadruple(int n) { return Twice(Double, n); }
248 return n == 2 ? &Double : n == 3 ? &Triple : n == 4 ? &Quadruple : 0;
/external/valgrind/main/none/tests/x86/
H A Dx87trigOOR.c12 typedef double Double; typedef
15 typedef struct { Double arg; Double st0; Double st1; UShort fpusw; } Res;
126 Double limit = 9223372036854775808.0; // 2^63
/external/lldb/tools/lldb-perf/lib/
H A DResults.h25 class Double;
37 Double, member in class:lldb_perf::Results::Result::Type
75 Double *
78 if (m_type == Type::Double)
79 return (Double *)this;
231 class Double : public Result class in class:lldb_perf::Results
234 Double (const char *name, const char *description, double value) : function in class:lldb_perf::Results::Double
235 Result (Type::Double, name, description),
241 ~Double()
/external/chromium_org/crypto/
H A Dghash.cc65 product_table_[Reverse(i)] = Double(product_table_[Reverse(i/2)]);
145 GaloisHash::FieldElement GaloisHash::Double(const FieldElement& x) { function in class:crypto::GaloisHash
/external/valgrind/main/VEX/pub/
H A Dlibvex_basictypes.h90 typedef double Double; /* IEEE754 double-precision (64-bit) value */ typedef
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Ddouble.h42 class Double { class in namespace:WTF::double_conversion
51 Double() : d64_(0) {} function in class:WTF::double_conversion::Double
52 explicit Double(double d) : d64_(double_to_uint64(d)) {} function in class:WTF::double_conversion::Double
53 explicit Double(uint64_t d64) : d64_(d64) {} function in class:WTF::double_conversion::Double
54 explicit Double(DiyFp diy_fp) function in class:WTF::double_conversion::Double
57 // The value encoded by this Double must be greater or equal to +0.0.
65 // The value encoded by this Double must be strictly greater than 0.
89 if (d64_ == kInfinity) return Double(kInfinity).value();
95 return Double(d64_ - 1).value();
97 return Double(d64
[all...]
/external/chromium_org/v8/src/
H A Ddouble.h18 class Double { class in namespace:v8::internal
28 Double() : d64_(0) {} function in class:v8::internal::Double
29 explicit Double(double d) : d64_(double_to_uint64(d)) {} function in class:v8::internal::Double
30 explicit Double(uint64_t d64) : d64_(d64) {} function in class:v8::internal::Double
31 explicit Double(DiyFp diy_fp) function in class:v8::internal::Double
34 // The value encoded by this Double must be greater or equal to +0.0.
42 // The value encoded by this Double must be strictly greater than 0.
66 if (d64_ == kInfinity) return Double(kInfinity).value();
72 return Double(d64_ - 1).value();
74 return Double(d64
[all...]
H A Dproperty-details.h84 static Representation Double() { return Representation(kDouble); } function in class:v8::internal::Representation
/external/llvm/include/llvm/IR/
H A DIntrinsics.h83 Void, VarArg, MMX, Metadata, Half, Float, Double, enumerator in enum:llvm::Intrinsic::IITDescriptor::IITDescriptorKind
/external/lldb/source/Core/
H A DScalar.cpp932 Scalar::Double(double fail_value) const function in class:Scalar
/external/llvm/include/llvm/Support/
H A DMathExtras.h512 inline uint64_t DoubleToBits(double Double) { argument
517 T.D = Double;
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-internal.h482 typedef FloatingPoint<double> Double; typedef in namespace:testing::internal
/external/chromium_org/base/test/
H A Dtrace_event_analyzer.cc217 Query Query::Double(double num) { function in class:trace_analyzer::Query
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-internal.h423 typedef FloatingPoint<double> Double; typedef in namespace:testing::internal
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-internal.h466 typedef FloatingPoint<double> Double; typedef in namespace:testing::internal
/external/gtest/include/gtest/internal/
H A Dgtest-internal.h391 typedef FloatingPoint<double> Double; typedef in namespace:testing::internal
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal.h495 typedef FloatingPoint<double> Double; typedef in namespace:testing::internal
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-internal.h466 typedef FloatingPoint<double> Double; typedef in namespace:testing::internal
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/include/
H A Dlcms2_plugin.h517 cmsFloat64Number* Double; // floating point for the matrix member in struct:__anon28661

Completed in 1046 milliseconds

12