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

  /external/clang/test/SemaTemplate/
qualified-names-diag.cpp 8 typedef float Real;
14 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/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 108 typedef typename REAL_ROOTS::Scalar Real;
112 std::vector< Real > calc_realRoots;
139 Real r = psolve.absGreatestRealRoot( hasRealRoot );
189 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/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/clang/lib/CodeGen/
CGExprComplex.cpp 78 /// EmitStoreOfComplex - Store the specified real/imag parts into the
183 // LNot,Real,Imag never return complex.
294 /// load the real and imaginary pieces, returning them as Real/Imag.
309 llvm::Value *Real=nullptr, *Imag=nullptr;
314 Real = Builder.CreateAlignedLoad(RealP, AlignR, isVolatile,
315 SrcPtr->getName() + ".real");
324 return ComplexPairTy(Real, Imag);
327 /// EmitStoreOfComplex - Store the specified real/imag parts into the
336 llvm::Value *RealPtr = Builder.CreateStructGEP(Ptr, 0, "real");
    [all...]
CGCall.cpp 644 llvm::Value *RealAddr = Builder.CreateStructGEP(LV.getAddress(), 0, "real");
    [all...]
CGBuiltin.cpp 263 Value *Real = ComplexVal.first;
271 return RValue::getComplex(std::make_pair(Real, Imag));
    [all...]
  /prebuilts/tools/common/m2/repository/xalan/xalan/2.6.0/
xalan-2.6.0.jar 

Completed in 1318 milliseconds