Home
last modified time | relevance | path

Searched refs:ComplexAPSInt (Results 1 – 2 of 2) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DAPValue.h122 struct ComplexAPSInt { struct
124 ComplexAPSInt() : Real(1), Imag(1) {} in ComplexAPSInt() function
163 typedef llvm::AlignedCharArrayUnion<void *, APSInt, APFloat, ComplexAPSInt,
276 return ((ComplexAPSInt*)(char*)Data.buffer)->Real; in getComplexIntReal()
284 return ((ComplexAPSInt*)(char*)Data.buffer)->Imag; in getComplexIntImag()
426 ((ComplexAPSInt *)(char *)Data.buffer)->Real = std::move(R); in setComplexInt()
427 ((ComplexAPSInt *)(char *)Data.buffer)->Imag = std::move(I); in setComplexInt()
481 new ((void*)(char*)Data.buffer) ComplexAPSInt(); in MakeComplexInt()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DAPValue.cpp239 ((ComplexAPSInt*)(char*)Data.buffer)->~ComplexAPSInt(); in DestroyDataAndMakeUninit()