Searched defs:double (Results 1 - 25 of 38) sorted by relevance

12

/external/mesa3d/src/compiler/glsl/glcpp/tests/
H A D069-repeated-argument.c1 #define double(x) x x macro
2 double(1)
H A D060-left-paren-in-macro-right-paren-in-text.c1 #define double(a) a*2 macro
2 #define foo double(
/external/clang/test/CodeGenCXX/
H A Dmangle-long-double.cpp7 void f(long double) {} argument
H A Dmangle-ms-arg-qualifiers.cpp8 void foo(const double) {} argument
12 void bar(const volatile double) {} argument
160 typedef double Vector[3];
178 void foo(Vector*, const Vector, const double) {} argument
H A Dx86_64-arguments.cpp145 A y(A, long double, long, long, StringRef) { return A(); } argument
147 struct StringDouble {char * ptr; double d;};
H A Dmangle-ms-cxx11.cpp210 int operator"" _deg(long double) { return 0; } argument
/external/clang/test/CodeGen/
H A Dlong_double_fp128.cpp16 // Check mangled name of long double.
17 // Android's gcc and llvm use fp128 for long double.
18 // NaCl uses double format for long double, but still has separate overloads.
19 void test(long, float, double, long double, long double _Complex) { } argument
20 // A64: define void @_Z4testlfdgCg(i64, float, double, fp128, { fp128, fp128 }*
21 // G64: define void @_Z4testlfdeCe(i64, float, double, x86_fp80, { x86_fp80, x86_fp80 }*
22 // P64: define void @_Z4testlfdgCg(i64, float, double, ppc_fp12
[all...]
/external/libffi/src/sparc/
H A Dv8.S106 be,a double
132 double: label
/external/python/cpython2/Modules/_ctypes/libffi/src/sparc/
H A Dv8.S106 be,a double
132 double: label
/external/python/cpython3/Modules/_ctypes/libffi/src/sparc/
H A Dv8.S106 be,a double
132 double: label
/external/clang/test/Parser/
H A Dcxx11-user-defined-literals.cpp53 constexpr long double operator"" _id(long double d) { return d; }
101 void operator R"xyzzy()xyzzy" _foo(long double); // ok
120 int operator""_\U0000212B(long double) {} // expected-note {{previous}} argument
122 int operator""_Å(long double) {} // expected-error {{redefinition of 'operator""_Å'}} argument
143 constexpr int operator""_¢(long double d) { return d * 100; } // expected-error {{non-ASCII}}
/external/python/cpython2/Lib/test/
H A Dtest_doctest.py40 ... sc = sc.double()
51 def double(self): member in class:SampleClass
53 >>> print SampleClass(12).double().get()
120 def double(self): member in class:SampleNewStyleClass
122 >>> print SampleNewStyleClass(12).double().get()
494 1 SampleClass.double
504 1 SampleNewStyleClass.double
549 1 some_module.SampleClass.double
590 1 SampleClass.double
610 1 SampleClass.double
[all...]
H A Dtest_decorators.py132 def double(x): function in function:TestDecorators.test_memoize
134 self.assertEqual(double.func_name, 'double')
136 self.assertEqual(counts, dict(double=0))
140 self.assertEqual(double(2), 4)
141 self.assertEqual(counts['double'], 1)
142 self.assertEqual(double(2), 4)
143 self.assertEqual(counts['double'], 1)
144 self.assertEqual(double(3), 6)
145 self.assertEqual(counts['double'],
[all...]
/external/python/cpython3/Lib/test/
H A Dtest_doctest.py42 ... sc = sc.double()
53 def double(self): member in class:SampleClass
55 >>> print(SampleClass(12).double().get())
122 def double(self): member in class:SampleNewStyleClass
124 >>> print(SampleNewStyleClass(12).double().get())
497 1 SampleClass.double
507 1 SampleNewStyleClass.double
552 1 some_module.SampleClass.double
593 1 SampleClass.double
613 1 SampleClass.double
[all...]
H A Dtest_decorators.py131 def double(x): function in function:TestDecorators.test_memoize
133 self.assertEqual(double.__name__, 'double')
135 self.assertEqual(counts, dict(double=0))
139 self.assertEqual(double(2), 4)
140 self.assertEqual(counts['double'], 1)
141 self.assertEqual(double(2), 4)
142 self.assertEqual(counts['double'], 1)
143 self.assertEqual(double(3), 6)
144 self.assertEqual(counts['double'],
[all...]
/external/python/cpython2/Tools/bgen/bgen/
H A DbgenType.py193 double = Type("double", "d") variable
/external/xmlrpcpp/src/
H A DXmlRpcValue.h49 XmlRpcValue(double value) : _type(TypeDouble) { _value.asDouble = value; }
82 XmlRpcValue& operator=(double const& rhs) { return operator=(XmlRpcValue(rhs)); }
90 operator double&() { assertTypeOrInvalid(TypeDouble); return _value.asDouble; }
127 //! Return the format used to write double values.
130 //! Specify the format used to write double values.
179 double asDouble;
/external/google-benchmark/include/benchmark/
H A Dbenchmark.h130 Use `Benchmark::MinTime(double t)` to set the minimum time used to run the
355 double value;
359 Counter(double v = 0., Flags f = kDefaults) : value(v), flags(f) {}
361 BENCHMARK_ALWAYS_INLINE operator double const& () const { return value; }
362 BENCHMARK_ALWAYS_INLINE operator double & () { return value; }
382 typedef double(BigOFunc)(int);
386 typedef double(StatisticsFunc)(const std::vector<double>&);
498 void SetIterationTime(double seconds);
541 // double compres
[all...]
/external/libcxx/utils/google-benchmark/include/benchmark/
H A Dbenchmark.h130 Use `Benchmark::MinTime(double t)` to set the minimum time used to run the
355 double value;
359 Counter(double v = 0., Flags f = kDefaults) : value(v), flags(f) {}
361 BENCHMARK_ALWAYS_INLINE operator double const& () const { return value; }
362 BENCHMARK_ALWAYS_INLINE operator double & () { return value; }
382 typedef double(BigOFunc)(int);
386 typedef double(StatisticsFunc)(const std::vector<double>&);
498 void SetIterationTime(double seconds);
541 // double compres
[all...]
/external/adhd/scripts/audio_tuning/frontend/
H A Daudio.js854 return new double(freq, create_lowpass);
859 return new double(freq, create_highpass);
863 function double(freq, creator) { class
/external/pdfium/core/fxcrt/
H A Dcfx_decimal.cpp358 CFX_Decimal::operator double() const {
359 double pow = (double)(1 << 16) * (1 << 16);
360 double base = static_cast<double>(m_uHi) * pow * pow +
361 static_cast<double>(m_uMid) * pow + static_cast<double>(m_uLo);
/external/tensorflow/tensorflow/core/lib/bfloat16/
H A Dbfloat16.h39 typedef std::complex<double> complex128;
58 B16_DEVICE_FUNC explicit bfloat16(const double val)
152 B16_DEVICE_FUNC explicit operator double() const {
153 return static_cast<double>(float(*this));
161 return complex128(double(*this), double(0.0));
/external/clang/test/Preprocessor/
H A Dcxx_oper_keyword_ms_compat.cpp46 #define double macro
131 double
/external/tensorflow/tensorflow/contrib/eager/python/
H A Dnetwork_test.py1267 # Passing a "training" argument to double would cause an error.
1268 def double(input_value): function in function:SequentialTest.testTrainingFunction
1271 net = network.Sequential([add_training, double])
/external/tensorflow/tensorflow/python/framework/
H A Ddtypes.py37 * `tf.float64`: 64-bit double-precision floating-point.
40 * `tf.complex128`: 128-bit double-precision complex.
337 double = float64 variable
338 tf_export("double").export_constant(__name__, "double")
508 _STRING_TO_TF["double"] = float64

Completed in 1448 milliseconds

12