Home
last modified time | relevance | path

Searched defs:ComplexValue (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExprConstant.cpp1567 struct ComplexValue { struct
1569 bool IsInt;
1572 APSInt IntReal, IntImag;
1573 APFloat FloatReal, FloatImag;
1575 ComplexValue() : FloatReal(APFloat::Bogus()), FloatImag(APFloat::Bogus()) {} in ComplexValue() argument
1577 void makeComplexFloat() { IsInt = false; } in makeComplexFloat()
1578 bool isComplexFloat() const { return !IsInt; } in isComplexFloat()
1579 APFloat &getComplexFloatReal() { return FloatReal; } in getComplexFloatReal()
1580 APFloat &getComplexFloatImag() { return FloatImag; } in getComplexFloatImag()
1582 void makeComplexInt() { IsInt = true; } in makeComplexInt()
[all …]