Home
last modified time | relevance | path

Searched defs:Real (Results 1 – 25 of 58) sorted by relevance

123

/external/rust/android-crates-io/crates/num-complex/src/
Dcomplex_float.rs30 type Real: Float + FloatConst; typedef
56 fn powc(self, exp: Complex<Self::Real>) -> Complex<Self::Real>; in powc()
127 fn re(self) -> Self::Real; in re()
130 fn im(self) -> Self::Real; in im()
133 fn abs(self) -> Self::Real; in abs()
138 fn l1_norm(&self) -> Self::Real; in l1_norm()
141 fn arg(self) -> Self::Real; in arg()
173 type Real = T; typedef
175 fn re(self) -> Self::Real { in re()
179 fn im(self) -> Self::Real { in im()
[all …]
/external/fonttools/Lib/fontTools/varLib/
Diup.py182 tolerance: Real,
209 deltas: _DeltaSegment, coords: _PointSegment, tolerance: Real = 0
302 tolerance: Real = 0,
360 deltas: _DeltaSegment, coords: _PointSegment, tolerance: Real = 0.0
464 tolerance: Real = 0.0,
/external/eigen/unsupported/Eigen/src/Polynomials/
DPolynomialUtils.h48 typedef typename NumTraits<T>::Real Real; in poly_eval() typedef
79 typedef typename NumTraits<Scalar>::Real Real; in cauchy_max_bound() typedef
102 typedef typename NumTraits<Scalar>::Real Real; in cauchy_min_bound() typedef
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/fend-core-1.5.5/src/num/
Dreal.rs17 pub(crate) struct Real { struct
21 impl fmt::Debug for Real { argument
44 impl hash::Hash for Real { implementation
52 impl Real { impl
489 pub(crate) fn mul<I: Interrupt>(self, rhs: Exact<&Real>, int: &I) -> FResult<Self> { in mul()
551 impl Neg for Real { implementation
564 impl From<u64> for Real { implementation
572 impl From<BigRat> for Real { implementation
Dcomplex.rs56 pub(crate) fn try_as_real(self) -> FResult<Real> { in try_as_real()
78 pub(crate) fn real(&self) -> Real { in real()
83 pub(crate) fn imag(&self) -> Real { in imag()
210 pub(crate) fn abs<I: Interrupt>(self, int: &I) -> FResult<Exact<Real>> { in abs()
232 pub(crate) fn floor<I: Interrupt>(self, int: &I) -> FResult<Exact<Real>> { in floor()
236 pub(crate) fn ceil<I: Interrupt>(self, int: &I) -> FResult<Exact<Real>> { in ceil()
240 pub(crate) fn round<I: Interrupt>(self, int: &I) -> FResult<Exact<Real>> { in round()
244 pub(crate) fn arg<I: Interrupt>(self, int: &I) -> FResult<Exact<Real>> { in arg()
341 fn expect_real(self) -> FResult<Real> { in expect_real()
/external/cronet/stable/third_party/rust/chromium_crates_io/vendor/fend-core-1.5.5/src/num/
Dreal.rs17 pub(crate) struct Real { struct
21 impl fmt::Debug for Real { argument
44 impl hash::Hash for Real { implementation
52 impl Real { implementation
489 pub(crate) fn mul<I: Interrupt>(self, rhs: Exact<&Real>, int: &I) -> FResult<Self> { in mul()
551 impl Neg for Real { implementation
564 impl From<u64> for Real { implementation
572 impl From<BigRat> for Real { implementation
Dcomplex.rs56 pub(crate) fn try_as_real(self) -> FResult<Real> { in try_as_real()
78 pub(crate) fn real(&self) -> Real { in real()
83 pub(crate) fn imag(&self) -> Real { in imag()
210 pub(crate) fn abs<I: Interrupt>(self, int: &I) -> FResult<Exact<Real>> { in abs()
232 pub(crate) fn floor<I: Interrupt>(self, int: &I) -> FResult<Exact<Real>> { in floor()
236 pub(crate) fn ceil<I: Interrupt>(self, int: &I) -> FResult<Exact<Real>> { in ceil()
240 pub(crate) fn round<I: Interrupt>(self, int: &I) -> FResult<Exact<Real>> { in round()
244 pub(crate) fn arg<I: Interrupt>(self, int: &I) -> FResult<Exact<Real>> { in arg()
341 fn expect_real(self) -> FResult<Real> { in expect_real()
/external/pytorch/aten/src/ATen/native/sparse/cuda/
DSparseCUDAApplyUtils.cuh16 TensorInfo<Real, IndexType> values1, IndexType idx1, in applyOp2()
28 TensorInfo<Real, IndexType> values1, IndexType idx1, in applyOp3()
/external/eigen/test/
Dboostmultiprec.cpp78 typedef mp::number<mp::cpp_dec_float<100>, mp::et_on> Real; typedef
135 Real get_test_precision(const Real&) { in get_test_precision()
Dnumext.cpp41 typedef typename NumTraits<T>::Real Real; in check_abs() typedef
66 typedef typename NumTraits<T>::Real Real; in check_arg() typedef
/external/clang/test/SemaTemplate/
Dqualified-names-diag.cpp13 typedef float Real; typedef
/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/
DComplexDeinterleavingPass.cpp137 Instruction *Real; member
406 Instruction *Real, Instruction *Imag, in identifyNodeWithImplicitAdd()
520 ComplexDeinterleavingGraph::identifyPartialMul(Instruction *Real, in identifyPartialMul()
633 ComplexDeinterleavingGraph::identifyAdd(Instruction *Real, Instruction *Imag) { in identifyAdd()
700 ComplexDeinterleavingGraph::identifyNode(Instruction *Real, Instruction *Imag) { in identifyNode()
814 Instruction *Real; in identifyNodes() local
/external/sdv/vsomeip/third_party/boost/numeric/ublas/test/manual/
Dsp_resize.cpp12 typedef double Real; typedef
/external/python/cpython3/Lib/test/test_unittest/testmock/
Dtestmock.py719 class Real(object): class
739 class Real(object): class
755 class Real(object): class
769 class Real(object): class
782 class Real(object): class
793 class Real(object): class
806 class Real(object): class
818 class Real(object): class
833 class Real(object): class
845 class Real(object): class
/external/leakcanary2/leakcanary-android-release/src/main/java/leakcanary/
DProcessInfo.kt36 object Real : ProcessInfo { in <lambda>() object
/external/eigen/unsupported/Eigen/src/AutoDiff/
DAutoDiffScalar.h78 typedef typename NumTraits<Scalar>::Real Real; typedef
/external/rust/android-crates-io/crates/num-traits/src/
Dreal.rs17 pub trait Real: Num + Copy + NumCast + PartialOrd + Neg<Output = Self> { trait
/external/robolectric/robolectric/src/test/java/org/robolectric/
DInvokeDynamicTest.java61 public static class Real { class in InvokeDynamicTest
/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/hash/
Dhash.h407 T& Real() { in Real() function
/external/cronet/stable/third_party/abseil-cpp/absl/hash/
Dhash.h410 T& Real() { in Real() function
/external/abseil-cpp/absl/hash/
Dhash.h410 T& Real() { in Real() function
/external/cronet/tot/third_party/abseil-cpp/absl/hash/
Dhash.h410 T& Real() { in Real() function
/external/perfetto/src/trace_processor/types/
Dvariadic.h68 static constexpr Variadic Real(double real_value) { in Real() function
/external/angle/third_party/abseil-cpp/absl/hash/
Dhash.h433 T& Real() { in Real() function
/external/cronet/tot/third_party/rust/chromium_crates_io/vendor/fend-core-1.5.5/src/value/
Dbuilt_in_function.rs37 Real, enumerator

123