HomeSort by: relevance | last modified time | path
    Searched defs:Imag (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/AST/
APValue.h 261 APSInt Real, Imag;
262 ComplexAPSInt() : Real(1), Imag(1) {}
265 APFloat Real, Imag;
266 ComplexAPFloat() : Real(0.0), Imag(0.0) {}
455 return ((ComplexAPSInt *)(char *)&Data)->Imag;
471 return ((ComplexAPFloat *)(char *)&Data)->Imag;
602 ((ComplexAPSInt *)(char *)&Data)->Imag = std::move(I);
609 ((ComplexAPFloat *)(char *)&Data)->Imag = std::move(I);
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGExprComplex.cpp 80 /// EmitStoreOfComplex - Store the specified real/imag parts into the
216 // LNot,Real,Imag never return complex.
348 /// load the real and imaginary pieces, returning them as Real/Imag.
358 llvm::Value *Real = nullptr, *Imag = nullptr;
367 Imag = Builder.CreateLoad(ImagP, isVolatile, SrcPtr.getName() + ".imag");
370 return ComplexPairTy(Real, Imag);
373 /// EmitStoreOfComplex - Store the specified real/imag parts into the
405 llvm::Value *Imag = CGF.EmitScalarExpr(IL->getSubExpr());
406 return ComplexPairTy(llvm::Constant::getNullValue(Imag->getType()), Imag)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 6203 Expr *Imag = TheCall->getArg(1);
6204 if (!Context.hasSameType(Real->getType(), Imag->getType())) {
6207 << Real->getType() << Imag->getType()
6208 << Real->getSourceRange() << Imag->getSourceRange();

Completed in 40 milliseconds