Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
HDExprConstant.cpp1421 struct ComplexValue { struct
1423 bool IsInt;
1426 APSInt IntReal, IntImag;
1427 APFloat FloatReal, FloatImag;
1429 ComplexValue() : FloatReal(APFloat::Bogus()), FloatImag(APFloat::Bogus()) {} in ComplexValue() function
1431 void makeComplexFloat() { IsInt = false; } in makeComplexFloat()
1432 bool isComplexFloat() const { return !IsInt; } in isComplexFloat()
1433 APFloat &getComplexFloatReal() { return FloatReal; } in getComplexFloatReal()
1434 APFloat &getComplexFloatImag() { return FloatImag; } in getComplexFloatImag()
1436 void makeComplexInt() { IsInt = true; } in makeComplexInt()
[all …]