Home
last modified time | relevance | path

Searched full:real (Results 1 – 25 of 16588) sorted by relevance

12345678910>>...664

/aosp_15_r20/external/fonttools/Tests/varLib/data/master_ufo/TestFamily4-Regular.ufo/
H A Dkerning.plist8 <real>-5.0</real>
10 <real>-40.0</real>
12 <real>-40.0</real>
14 <real>-25.0</real>
16 <real>-50.0</real>
18 <real>-15.0</real>
20 <real>-10.0</real>
22 <real>-80.0</real>
24 <real>-25.0</real>
26 <real>-30.0</real>
[all …]
/aosp_15_r20/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
Dgdiplusflat.h35 GpStatus WINGDIPAPI GdipCreateAdjustableArrowCap(REAL,REAL,BOOL,GpAdjustableArrowCap**);
36 GpStatus WINGDIPAPI GdipSetAdjustableArrowCapHeight(GpAdjustableArrowCap*,REAL);
37 GpStatus WINGDIPAPI GdipGetAdjustableArrowCapHeight(GpAdjustableArrowCap*,REAL*);
38 GpStatus WINGDIPAPI GdipSetAdjustableArrowCapWidth(GpAdjustableArrowCap*,REAL);
39 GpStatus WINGDIPAPI GdipGetAdjustableArrowCapWidth(GpAdjustableArrowCap*,REAL*);
40 GpStatus WINGDIPAPI GdipSetAdjustableArrowCapMiddleInset(GpAdjustableArrowCap*,REAL);
41 GpStatus WINGDIPAPI GdipGetAdjustableArrowCapMiddleInset(GpAdjustableArrowCap*,REAL*);
59 GpStatus WINGDIPAPI GdipCloneBitmapArea(REAL,REAL,REAL,REAL,PixelFormat,GpBitmap*,GpBitmap**);
65 GpStatus WINGDIPAPI GdipBitmapSetResolution(GpBitmap*,REAL,REAL);
66 …INGDIPAPI GdipBitmapConvertFormat(GpBitmap*,PixelFormat,DitherType,PaletteType,ColorPalette*,REAL);
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/gdbstub/src/common/
Dsignal.rs58 #[doc = "Real-time event 33"] pub const SIG33: Self = Self(45);
59 #[doc = "Real-time event 34"] pub const SIG34: Self = Self(46);
60 #[doc = "Real-time event 35"] pub const SIG35: Self = Self(47);
61 #[doc = "Real-time event 36"] pub const SIG36: Self = Self(48);
62 #[doc = "Real-time event 37"] pub const SIG37: Self = Self(49);
63 #[doc = "Real-time event 38"] pub const SIG38: Self = Self(50);
64 #[doc = "Real-time event 39"] pub const SIG39: Self = Self(51);
65 #[doc = "Real-time event 40"] pub const SIG40: Self = Self(52);
66 #[doc = "Real-time event 41"] pub const SIG41: Self = Self(53);
67 #[doc = "Real-time event 42"] pub const SIG42: Self = Self(54);
[all …]
/aosp_15_r20/external/coreboot/payloads/libpayload/include/
H A Dgdb.h129 GDB_SIG33 = 45, /* Real-timeevent 33 */
130 GDB_SIG34 = 46, /* Real-timeevent 34 */
131 GDB_SIG35 = 47, /* Real-timeevent 35 */
132 GDB_SIG36 = 48, /* Real-timeevent 36 */
133 GDB_SIG37 = 49, /* Real-timeevent 37 */
134 GDB_SIG38 = 50, /* Real-timeevent 38 */
135 GDB_SIG39 = 51, /* Real-timeevent 39 */
136 GDB_SIG40 = 52, /* Real-timeevent 40 */
137 GDB_SIG41 = 53, /* Real-timeevent 41 */
138 GDB_SIG42 = 54, /* Real-timeevent 42 */
[all …]
/aosp_15_r20/external/pytorch/c10/test/util/
H A Dcomplex_math_test_common.h21 C10_ASSERT_NEAR(e_i_pi.real(), -1, tol); in C10_DEFINE_TEST()
26 C10_ASSERT_NEAR(e_i_pi.real(), -1, tol); in C10_DEFINE_TEST()
31 C10_ASSERT_NEAR(e_i_pi.real(), -1, tol); in C10_DEFINE_TEST()
36 C10_ASSERT_NEAR(e_i_pi.real(), -1, tol); in C10_DEFINE_TEST()
46 float expected_real = std::exp(x.real()) * std::cos(x.imag()); in C10_DEFINE_TEST()
47 float expected_imag = std::exp(x.real()) * std::sin(x.imag()); in C10_DEFINE_TEST()
48 C10_ASSERT_NEAR(e.real(), expected_real, tol); in C10_DEFINE_TEST()
54 float expected_real = ::exp(x.real()) * ::cos(x.imag()); in C10_DEFINE_TEST()
55 float expected_imag = ::exp(x.real()) * ::sin(x.imag()); in C10_DEFINE_TEST()
56 C10_ASSERT_NEAR(e.real(), expected_real, tol); in C10_DEFINE_TEST()
[all …]
/aosp_15_r20/external/cronet/third_party/rust/chromium_crates_io/vendor/fend-core-1.4.6/src/num/
H A Dcomplex.rs2 use crate::num::real::{self, Real};
12 real: Real, field
13 imag: Real,
18 write!(f, "{:?}", self.real)?; in fmt()
36 Ok(Some(self.real().compare(&other.real(), int)?)) in compare()
43 self.real.serialize(write)?; in serialize()
50 real: Real::deserialize(read)?, in deserialize()
51 imag: Real::deserialize(read)?, in deserialize()
59 self.real.try_as_usize(int) in try_as_usize()
66 self.real.try_as_i64(int) in try_as_i64()
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/lib/clang/19/include/openmp_wrappers/
Dcomplex_cmath.h35 return hypot(__c.real(), __c.imag()); in abs()
41 return atan2(__c.imag(), __c.real()); in arg()
59 if (std::isinf(__c.real())) in norm()
60 return abs(__c.real()); in norm()
63 return __c.real() * __c.real() + __c.imag() * __c.imag(); in norm()
69 return std::complex<_Tp>(__c.real(), -__c.imag()); in conj()
76 if (std::isinf(__c.real()) || std::isinf(__c.imag())) in proj()
124 if (std::isinf(__x.real())) { in sqrt()
125 if (__x.real() > _Tp(0)) in sqrt()
126 return std::complex<_Tp>(__x.real(), std::isnan(__x.imag()) in sqrt()
[all …]
/aosp_15_r20/prebuilts/clang-tools/linux-x86/lib64/clang/19/include/openmp_wrappers/
H A Dcomplex_cmath.h35 return hypot(__c.real(), __c.imag()); in abs()
41 return atan2(__c.imag(), __c.real()); in arg()
59 if (std::isinf(__c.real())) in norm()
60 return abs(__c.real()); in norm()
63 return __c.real() * __c.real() + __c.imag() * __c.imag(); in norm()
69 return std::complex<_Tp>(__c.real(), -__c.imag()); in conj()
76 if (std::isinf(__c.real()) || std::isinf(__c.imag())) in proj()
124 if (std::isinf(__x.real())) { in sqrt()
125 if (__x.real() > _Tp(0)) in sqrt()
126 return std::complex<_Tp>(__x.real(), std::isnan(__x.imag()) in sqrt()
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/lib/clang/19/include/openmp_wrappers/
Dcomplex_cmath.h35 return hypot(__c.real(), __c.imag()); in abs()
41 return atan2(__c.imag(), __c.real()); in arg()
59 if (std::isinf(__c.real())) in norm()
60 return abs(__c.real()); in norm()
63 return __c.real() * __c.real() + __c.imag() * __c.imag(); in norm()
69 return std::complex<_Tp>(__c.real(), -__c.imag()); in conj()
76 if (std::isinf(__c.real()) || std::isinf(__c.imag())) in proj()
124 if (std::isinf(__x.real())) { in sqrt()
125 if (__x.real() > _Tp(0)) in sqrt()
126 return std::complex<_Tp>(__x.real(), std::isnan(__x.imag()) in sqrt()
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/lib/clang/18/include/openmp_wrappers/
Dcomplex_cmath.h35 return hypot(__c.real(), __c.imag()); in abs()
41 return atan2(__c.imag(), __c.real()); in arg()
59 if (std::isinf(__c.real())) in norm()
60 return abs(__c.real()); in norm()
63 return __c.real() * __c.real() + __c.imag() * __c.imag(); in norm()
69 return std::complex<_Tp>(__c.real(), -__c.imag()); in conj()
76 if (std::isinf(__c.real()) || std::isinf(__c.imag())) in proj()
124 if (std::isinf(__x.real())) { in sqrt()
125 if (__x.real() > _Tp(0)) in sqrt()
126 return std::complex<_Tp>(__x.real(), std::isnan(__x.imag()) in sqrt()
[all …]
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/lib/clang/19/include/openmp_wrappers/
Dcomplex_cmath.h35 return hypot(__c.real(), __c.imag()); in abs()
41 return atan2(__c.imag(), __c.real()); in arg()
59 if (std::isinf(__c.real())) in norm()
60 return abs(__c.real()); in norm()
63 return __c.real() * __c.real() + __c.imag() * __c.imag(); in norm()
69 return std::complex<_Tp>(__c.real(), -__c.imag()); in conj()
76 if (std::isinf(__c.real()) || std::isinf(__c.imag())) in proj()
124 if (std::isinf(__x.real())) { in sqrt()
125 if (__x.real() > _Tp(0)) in sqrt()
126 return std::complex<_Tp>(__x.real(), std::isnan(__x.imag()) in sqrt()
[all …]
/aosp_15_r20/external/python/cpython2/Modules/
Dcmathmodule.c39 square roots accurately when the real and imaginary parts of the argument
101 if (!Py_IS_FINITE((z).real) || !Py_IS_FINITE((z).imag)) { \
103 return table[special_type((z).real)] \
115 /* First, the C functions that do the real work. Each of the c_*
133 if (fabs(z.real) > CM_LARGE_DOUBLE || fabs(z.imag) > CM_LARGE_DOUBLE) { in c_acos()
135 r.real = atan2(fabs(z.imag), z.real); in c_acos()
138 if (z.real < 0.) { in c_acos()
139 r.imag = -copysign(log(hypot(z.real/2., z.imag/2.)) + in c_acos()
142 r.imag = copysign(log(hypot(z.real/2., z.imag/2.)) + in c_acos()
146 s1.real = 1.-z.real; in c_acos()
[all …]
/aosp_15_r20/external/pytorch/aten/src/ATen/cuda/
H A Dllvm_complex.cpp42 : __re_(__c.real()), __im_(__c.imag()) {}
44 constexpr value_type real() const {return __re_;}
47 void real(value_type __re) {__re_ = __re;}
51 return real() || imag();
63 __re_ = __c.real();
69 __re_ += __c.real();
75 __re_ -= __c.real();
81 *this = *this * complex(__c.real(), __c.imag());
86 *this = *this / complex(__c.real(), __c.imag());
106 constexpr float real() const {return __re_;}
[all …]
/aosp_15_r20/external/python/cpython3/Modules/
Dcmathmodule.c80 square roots accurately when the real and imaginary parts of the argument
111 r.real = 0.0; in c_infj()
132 r.real = 0.0; in c_nanj()
190 if (!Py_IS_FINITE((z).real) || !Py_IS_FINITE((z).imag)) { \
192 return table[special_type((z).real)] \
204 /* First, the C functions that do the real work. Each of the c_*
232 if (fabs(z.real) > CM_LARGE_DOUBLE || fabs(z.imag) > CM_LARGE_DOUBLE) { in cmath_acos_impl()
234 r.real = atan2(fabs(z.imag), z.real); in cmath_acos_impl()
237 if (z.real < 0.) { in cmath_acos_impl()
238 r.imag = -copysign(log(hypot(z.real/2., z.imag/2.)) + in cmath_acos_impl()
[all …]
/aosp_15_r20/hardware/google/gfxstream/third-party/glm/include/glm/gtx/
Ddual_quaternion.inl15 return (&real)[i];
22 return (&real)[i];
31 : real(tquat<T, P>())
40 : real(d.real)
48 : real(d.real)
60 : real(r), dual(tquat<T, P>(0, 0, 0, 0))
65 : real(q), dual(
74 : real(r), dual(d)
82 : real(q.real)
104 this->real = q.real;
[all …]
/aosp_15_r20/external/oboe/samples/RhythmGame/third_party/glm/gtx/
H A Ddual_quaternion.inl15 return (&real)[i];
22 return (&real)[i];
31 : real(tquat<T, P>())
40 : real(d.real)
48 : real(d.real)
60 : real(r), dual(tquat<T, P>(0, 0, 0, 0))
65 : real(q), dual(
74 : real(r), dual(d)
82 : real(q.real)
104 this->real = q.real;
[all …]
/aosp_15_r20/external/python/cpython2/Objects/
Dcomplexobject.c37 r.real = a.real + b.real; in c_sum()
46 r.real = a.real - b.real; in c_diff()
55 r.real = -a.real; in c_neg()
64 r.real = a.real*b.real - a.imag*b.imag; in c_prod()
65 r.imag = a.real*b.imag + a.imag*b.real; in c_prod()
80 double d = b.real*b.real + b.imag*b.imag; in c_quot()
83 r.real = (a.real*b.real + a.imag*b.imag)/d; in c_quot()
84 r.imag = (a.imag*b.real - a.real*b.imag)/d; in c_quot()
89 * numerators and denominator by whichever of {b.real, b.imag} has in c_quot()
96 const double abs_breal = b.real < 0 ? -b.real : b.real; in c_quot()
[all …]
/aosp_15_r20/prebuilts/vndk/v32/x86_64/include/external/libcxx/include/
Dcomplex30 T real() const; // constexpr in C++14
33 void real(T);
60 constexpr float real() const;
61 void real(float);
89 constexpr double real() const;
90 void real(double);
118 constexpr long double real() const;
119 void real(long double);
168 template<class T> T real(const complex<T>&); // constexpr in C++14
169 long double real(long double); // constexpr in C++14
[all …]
/aosp_15_r20/prebuilts/vndk/v33/arm/include/external/libcxx/include/
Dcomplex30 T real() const; // constexpr in C++14
33 void real(T);
60 constexpr float real() const;
61 void real(float);
89 constexpr double real() const;
90 void real(double);
118 constexpr long double real() const;
119 void real(long double);
168 template<class T> T real(const complex<T>&); // constexpr in C++14
169 long double real(long double); // constexpr in C++14
[all …]
/aosp_15_r20/prebuilts/vndk/v32/arm/include/external/libcxx/include/
Dcomplex30 T real() const; // constexpr in C++14
33 void real(T);
60 constexpr float real() const;
61 void real(float);
89 constexpr double real() const;
90 void real(double);
118 constexpr long double real() const;
119 void real(long double);
168 template<class T> T real(const complex<T>&); // constexpr in C++14
169 long double real(long double); // constexpr in C++14
[all …]
/aosp_15_r20/prebuilts/vndk/v33/x86_64/include/external/libcxx/include/
Dcomplex30 T real() const; // constexpr in C++14
33 void real(T);
60 constexpr float real() const;
61 void real(float);
89 constexpr double real() const;
90 void real(double);
118 constexpr long double real() const;
119 void real(long double);
168 template<class T> T real(const complex<T>&); // constexpr in C++14
169 long double real(long double); // constexpr in C++14
[all …]
/aosp_15_r20/prebuilts/vndk/v30/arm/include/external/libcxx/include/
Dcomplex30 T real() const; // constexpr in C++14
33 void real(T);
60 constexpr float real() const;
61 void real(float);
89 constexpr double real() const;
90 void real(double);
118 constexpr long double real() const;
119 void real(long double);
168 template<class T> T real(const complex<T>&); // constexpr in C++14
169 long double real(long double); // constexpr in C++14
[all …]
/aosp_15_r20/prebuilts/vndk/v30/x86_64/include/external/libcxx/include/
Dcomplex30 T real() const; // constexpr in C++14
33 void real(T);
60 constexpr float real() const;
61 void real(float);
89 constexpr double real() const;
90 void real(double);
118 constexpr long double real() const;
119 void real(long double);
168 template<class T> T real(const complex<T>&); // constexpr in C++14
169 long double real(long double); // constexpr in C++14
[all …]
/aosp_15_r20/prebuilts/vndk/v31/x86_64/include/external/libcxx/include/
Dcomplex30 T real() const; // constexpr in C++14
33 void real(T);
60 constexpr float real() const;
61 void real(float);
89 constexpr double real() const;
90 void real(double);
118 constexpr long double real() const;
119 void real(long double);
168 template<class T> T real(const complex<T>&); // constexpr in C++14
169 long double real(long double); // constexpr in C++14
[all …]
/aosp_15_r20/prebuilts/vndk/v32/arm64/include/external/libcxx/include/
Dcomplex30 T real() const; // constexpr in C++14
33 void real(T);
60 constexpr float real() const;
61 void real(float);
89 constexpr double real() const;
90 void real(double);
118 constexpr long double real() const;
119 void real(long double);
168 template<class T> T real(const complex<T>&); // constexpr in C++14
169 long double real(long double); // constexpr in C++14
[all …]

12345678910>>...664