Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Headers/openmp_wrappers/
H A Dcomplex_cmath.h35 return hypot(__c.real(), __c.imag()); in abs()
41 return atan2(__c.imag(), __c.real()); in arg()
61 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()
69 return std::complex<_Tp>(__c.real(), -__c.imag()); in conj()
76 if (std::isinf(__c.real()) || std::isinf(__c.imag())) in proj()
77 __r = std::complex<_Tp>(INFINITY, copysign(_Tp(0), __c.imag())); in proj()
122 if (std::isinf(__x.imag())) in sqrt()
123 return std::complex<_Tp>(_Tp(INFINITY), __x.imag()); in sqrt()
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dcomplex30 T imag() const; // constexpr in C++14
33 void imag(T); // constexpr in C++20
61 constexpr float imag() const;
62 void imag(float); // constexpr in C++20
90 constexpr double imag() const;
91 void imag(double); // constexpr in C++20
119 constexpr long double imag() const;
120 void imag(long double); // constexpr in C++20
173 template<class T> T imag(const complex<T>&); // constexpr in C++14
174 long double imag(long double); // constexpr in C++14
[all …]
/freebsd/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/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/contrib/llvm-project/libcxx/modules/std/
H A Dcomplex.cppm
H A Dcomplex.inc28 using std::imag;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DPropertiesBase.td303 def : Property<"imag", APSInt> {
306 def : Creator<[{ return APValue(real, imag); }]>;
321 def : Property<"imag", APInt> {
328 llvm::APFloat(sema, imag));
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCleanup.cpp71 llvm::Value *imag = DominatingLLVMValue::restore(CGF, Vals.second); in restore() local
72 return RValue::getComplex(real, imag); in restore()
H A DCGObjCMac.cpp1825 llvm::PHINode *imag = CGF.Builder.CreatePHI(scalarTy, 2); in complete() local
1826 imag->addIncoming(callResult.second, callBB); in complete()
1827 imag->addIncoming(scalarZero, NullBB); in complete()
1828 return RValue::getComplex(real, imag); in complete()
/freebsd/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/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/contrib/file/magic/Magdir/
H A Driff714 >8 string imag \b, Easy CD Creator disk image
/freebsd/contrib/tcpdump/
H A DCHANGES1443 packet. Thanks to Jean-Luc Richier (Jean-Luc.Richier@imag.fr) and
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc1491 SYMBOL(imag, std::, <complex>)