Home
last modified time | relevance | path

Searched refs:imag (Results 1 – 13 of 13) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/
H A Dcomplex_cmath.h61 if (std::isinf(__c.imag())) in norm()
62 return abs(__c.imag()); in norm()
63 return __c.real() * __c.real() + __c.imag() * __c.imag(); in norm()
129 return std::complex<_Tp>(std::isnan(__x.imag()) ? __x.imag() : _Tp(0), in sqrt()
139 _Tp __i = __x.imag(); in exp()
187 if (__x.imag() == 0) in asinh()
196 copysign(__z.imag(), __x.imag())); in asinh()
229 copysign(__z.imag(), __x.imag())); in acosh()
244 return std::complex<_Tp>(__x.imag(), __x.imag()); in atanh()
259 copysign(__z.imag(), __x.imag())); in atanh()
[all …]
/freebsd-14.2/contrib/llvm-project/libcxx/include/
H A Dcomplex309 __im_ = __c.imag();
825 return __x.real() == __y.real() && __x.imag() == __y.imag();
890 // imag
894 return __c.imag();
899 imag(_Tp) {
940 return __c.real() * __c.real() + __c.imag() * __c.imag();
1035 … __x.real(), std::__constexpr_isnan(__x.imag()) ? __x.imag() : std::copysign(_Tp(0), __x.imag()));
1037 … std::__constexpr_isnan(__x.imag()) ? __x.imag() : _Tp(0), std::copysign(__x.real(), __x.imag()));
1094 …return complex<_Tp>((__x.real() - __x.imag()) * (__x.real() + __x.imag()), _Tp(2) * __x.real() * _…
1162 return complex<_Tp>(__x.imag(), __x.imag());
[all …]
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/builtins/ppc/
H A Ddivtc3.c50 DD imag = {.ld = __gcc_qdiv(imagNumerator, denom)}; in __divtc3() local
54 imag.s.hi = __compiler_rt_scalbn(imag.s.hi, -ilogbw); in __divtc3()
55 imag.s.lo = __compiler_rt_scalbn(imag.s.lo, -ilogbw); in __divtc3()
57 if (crt_isnan(real.s.hi) && crt_isnan(imag.s.hi)) { in __divtc3()
65 imag.s.hi = crt_copysign(CRT_INFINITY, cDD.s.hi) * bDD.s.hi; in __divtc3()
66 imag.s.lo = 0.0; in __divtc3()
75 imag.s.hi = CRT_INFINITY * (bDD.s.hi * cDD.s.hi - aDD.s.hi * dDD.s.hi); in __divtc3()
76 imag.s.lo = 0.0; in __divtc3()
86 imag.s.hi = in __divtc3()
88 imag.s.lo = 0.0; in __divtc3()
[all …]
H A Dmultc3.c30 DD imag = {.ld = __gcc_qadd(ad, bc)}; in __multc3() local
32 if (crt_isnan(real.s.hi) && crt_isnan(imag.s.hi)) { in __multc3()
75 imag.s.hi = CRT_INFINITY * (aDD.s.hi * dDD.s.hi + bDD.s.hi * cDD.s.hi); in __multc3()
76 imag.s.lo = 0.0; in __multc3()
82 __imag__ z = imag.ld; in __multc3()
/freebsd-14.2/contrib/llvm-project/clang/lib/Headers/cuda_wrappers/
H A Dcomplex60 // return complex<T>(sin(x.real()) * cosh(x.imag()),
61 // cos(x.real()), sinh(x.imag()));
/freebsd-14.2/contrib/llvm-project/libcxx/modules/std/
H A Dcomplex.inc28 using std::imag;
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DPropertiesBase.td300 def : Property<"imag", APSInt> {
303 def : Creator<[{ return APValue(real, imag); }]>;
318 def : Property<"imag", APInt> {
325 llvm::APFloat(sema, imag));
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCleanup.cpp99 llvm::Value *imag = in restore() local
101 return RValue::getComplex(real, imag); in restore()
H A DCGObjCMac.cpp1817 llvm::PHINode *imag = CGF.Builder.CreatePHI(scalarTy, 2); in complete() local
1818 imag->addIncoming(callResult.second, callBB); in complete()
1819 imag->addIncoming(scalarZero, NullBB); in complete()
1820 return RValue::getComplex(real, imag); in complete()
/freebsd-14.2/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_atomic.h56 type_lhs b = lhs.imag(); in __kmp_lhs_div_rhs()
58 type_rhs d = rhs.imag(); in __kmp_lhs_div_rhs()
/freebsd-14.2/sys/gnu/dev/bwn/phy_n/
H A Dif_bwn_phy_n_core.c5832 uint32_t real, imag; in bwn_nphy_rev2_cal_rx_iq() local
5966 imag = est.q0_pwr; in bwn_nphy_rev2_cal_rx_iq()
5969 imag = est.q1_pwr; in bwn_nphy_rev2_cal_rx_iq()
5971 power[i] = ((real + imag) / 1024) + 1; in bwn_nphy_rev2_cal_rx_iq()
/freebsd-14.2/contrib/tcpdump/
H A DCHANGES1443 packet. Thanks to Jean-Luc Richier (Jean-Luc.Richier@imag.fr) and
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc1491 SYMBOL(imag, std::, <complex>)