HomeSort by relevance Sort by last modified time
    Searched defs:Real (Results 1 - 25 of 27) sorted by null

1 2

  /external/clang/test/SemaTemplate/
qualified-names-diag.cpp 13 typedef float Real;
19 vector<Real> v2;
  /external/eigen/Eigen/src/Core/
NumTraits.h 25 * \li A typedef \a Real, giving the "real part" type of \a T. If \a T is already real,
26 * then \a Real is just a typedef to \a T. If \a T is \c std::complex<U> then \a Real
45 * \li An epsilon() function which, unlike std::numeric_limits::epsilon(), returns a \a Real instead of a \a T.
63 typedef T Real;
71 static inline Real epsilon() { return std::numeric_limits<T>::epsilon(); }
72 static inline Real dummy_precision()
75 return Real(0)
    [all...]
  /external/eigen/unsupported/Eigen/src/Polynomials/
PolynomialUtils.h 48 typedef typename NumTraits<T>::Real Real;
50 if( numext::abs2( x ) <= Real(1) ){
75 typename NumTraits<typename Polynomial::Scalar>::Real cauchy_max_bound( const Polynomial& poly )
79 typedef typename NumTraits<Scalar>::Real Real;
83 Real cb(0);
87 return cb + Real(1);
98 typename NumTraits<typename Polynomial::Scalar>::Real cauchy_min_bound( const Polynomial& poly )
102 typedef typename NumTraits<Scalar>::Real Real
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_abstract_numbers.py 5 from numbers import Complex, Real, Rational, Integral
13 self.assertEqual(7, int(7).real)
23 self.assertEqual(7, long(7).real)
31 self.assertTrue(issubclass(float, Real))
33 self.assertEqual(7.3, float(7.3).real)
38 self.assertFalse(issubclass(complex, Real))
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_abstract_numbers.py 5 from numbers import Complex, Real, Rational, Integral
13 self.assertEqual(7, int(7).real)
23 self.assertEqual(7, long(7).real)
31 self.assertTrue(issubclass(float, Real))
33 self.assertEqual(7.3, float(7.3).real)
38 self.assertFalse(issubclass(complex, Real))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_abstract_numbers.py 5 from numbers import Complex, Real, Rational, Integral
13 self.assertEqual(7, int(7).real)
23 self.assertEqual(7, long(7).real)
31 self.assertTrue(issubclass(float, Real))
33 self.assertEqual(7.3, float(7.3).real)
38 self.assertFalse(issubclass(complex, Real))
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_abstract_numbers.py 5 from numbers import Complex, Real, Rational, Integral
13 self.assertEqual(7, int(7).real)
23 self.assertEqual(7, long(7).real)
31 self.assertTrue(issubclass(float, Real))
33 self.assertEqual(7.3, float(7.3).real)
38 self.assertFalse(issubclass(complex, Real))
  /external/eigen/unsupported/test/
polynomialsolver.cpp 107 typedef typename REAL_ROOTS::Scalar Real;
110 std::vector< Real > calc_realRoots;
137 Real r = psolve.absGreatestRealRoot( hasRealRoot );
187 typename NumTraits<_Scalar>::Real
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffScalar.h 51 * - internal::conj, internal::real, internal::imag, numext::abs2.
63 typename NumTraits<typename internal::traits<typename internal::remove_all<_DerType>::type>::Scalar>::Real>::value>
68 typename NumTraits<typename internal::traits<typename internal::remove_all<_DerType>::type>::Scalar>::Real>::value> Base;
71 typedef typename NumTraits<Scalar>::Real Real;
89 /*explicit*/ AutoDiffScalar(const Real& value)
170 // inline const AutoDiffScalar<DerType&> operator+(const Real& other) const
175 // friend inline const AutoDiffScalar<DerType&> operator+(const Real& a, const AutoDiffScalar& b)
264 // inline const AutoDiffScalar<typename CwiseUnaryOp<internal::scalar_multiple_op<Real>, DerType>::Type >
265 // operator*(const Real& other) cons
535 inline const AutoDiffScalar<DerType>& real(const AutoDiffScalar<DerType>& x) { return x; } function in namespace:Eigen
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
numbers.py 11 __all__ = ["Number", "Complex", "Real", "Rational", "Integral"]
28 ## Decimal has all of the methods specified by the Real abc, but it should
29 ## not be registered as a Real because decimals do not interoperate with
37 In short, those are: a conversion to complex, .real, .imag, +, -,
57 def real(self): member in class:Complex
58 """Retrieve the real component of this number.
60 This should subclass Real.
68 This should subclass Real.
148 """Returns the Real distance from 0. Called for abs(self)."""
169 class Real(Complex)
254 def real(self): member in class:Real
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
numbers.py 11 __all__ = ["Number", "Complex", "Real", "Rational", "Integral"]
28 ## Decimal has all of the methods specified by the Real abc, but it should
29 ## not be registered as a Real because decimals do not interoperate with
37 In short, those are: a conversion to complex, .real, .imag, +, -,
57 def real(self): member in class:Complex
58 """Retrieve the real component of this number.
60 This should subclass Real.
68 This should subclass Real.
148 """Returns the Real distance from 0. Called for abs(self)."""
169 class Real(Complex)
254 def real(self): member in class:Real
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
numbers.py 11 __all__ = ["Number", "Complex", "Real", "Rational", "Integral"]
28 ## Decimal has all of the methods specified by the Real abc, but it should
29 ## not be registered as a Real because decimals do not interoperate with
37 In short, those are: a conversion to complex, .real, .imag, +, -,
57 def real(self): member in class:Complex
58 """Retrieve the real component of this number.
60 This should subclass Real.
68 This should subclass Real.
148 """Returns the Real distance from 0. Called for abs(self)."""
169 class Real(Complex)
254 def real(self): member in class:Real
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
numbers.py 11 __all__ = ["Number", "Complex", "Real", "Rational", "Integral"]
28 ## Decimal has all of the methods specified by the Real abc, but it should
29 ## not be registered as a Real because decimals do not interoperate with
37 In short, those are: a conversion to complex, .real, .imag, +, -,
57 def real(self): member in class:Complex
58 """Retrieve the real component of this number.
60 This should subclass Real.
68 This should subclass Real.
148 """Returns the Real distance from 0. Called for abs(self)."""
169 class Real(Complex)
254 def real(self): member in class:Real
    [all...]
  /external/ceres-solver/include/ceres/
jet.h 39 // numbers are extensions of the real numbers analogous to complex numbers:
42 // that e^2 = 0. Dual numbers have two components: the "real" component and the
644 typedef ceres::Jet<T, N> Real;
652 static inline Real epsilon() { return Real(std::numeric_limits<T>::epsilon()); }
  /external/clang/include/clang/AST/
APValue.h 72 APSInt Real, Imag;
73 ComplexAPSInt() : Real(1), Imag(1) {}
76 APFloat Real, Imag;
77 ComplexAPFloat() : Real(0.0), Imag(0.0) {}
218 return ((ComplexAPSInt*)(char*)Data.buffer)->Real;
234 return ((ComplexAPFloat*)(char*)Data.buffer)->Real;
366 ((ComplexAPSInt *)(char *)Data.buffer)->Real = std::move(R);
373 ((ComplexAPFloat *)(char *)Data.buffer)->Real = std::move(R);
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 36 // Real values.
37 Real,
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1/pyasn1/type/
univ.py 506 class Real(base.AbstractSimpleAsn1Item):
532 'Lame Real value syntax: %s' % (value,)
536 'Prohibited base for Real value: %s' % (value[1],)
552 elif isinstance(value, Real):
560 'Bad real value syntax: %s' % (value,)
    [all...]
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 82 /// EmitStoreOfComplex - Store the specified real/imag parts into the
190 // LNot,Real,Imag never return complex.
317 /// load the real and imaginary pieces, returning them as Real/Imag.
327 llvm::Value *Real = nullptr, *Imag = nullptr;
331 Real = Builder.CreateLoad(RealP, isVolatile, SrcPtr.getName() + ".real");
339 return ComplexPairTy(Real, Imag);
342 /// EmitStoreOfComplex - Store the specified real/imag parts into the
404 // complex type, both the real and imaginary parts follow the conversio
    [all...]
CGBuiltin.cpp 485 Value *Real = ComplexVal.first;
493 return RValue::getComplex(std::make_pair(Real, Imag));
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /prebuilts/gradle-plugin/com/android/tools/external/com-intellij/uast/145.597.3/
uast-145.597.3.jar 
  /prebuilts/tools/common/m2/repository/com/android/tools/external/com-intellij/uast/145.597.3/
uast-145.597.3.jar 
  /prebuilts/tools/common/offline-m2/com/android/tools/external/com-intellij/uast/145.597.3/
uast-145.597.3.jar 
  /prebuilts/tools/common/uast/
uast-145.597.3.jar 
  /external/libgdx/backends/gdx-backend-moe/libs/
intel-moe-ios.jar 

Completed in 554 milliseconds

1 2