HomeSort by relevance Sort by last modified time
    Searched defs:Imag (Results 1 - 4 of 4) sorted by null

  /external/clang/include/clang/AST/
APValue.h 72 APSInt Real, Imag;
73 ComplexAPSInt() : Real(1), Imag(1) {}
76 APFloat Real, Imag;
77 ComplexAPFloat() : Real(0.0), Imag(0.0) {}
226 return ((ComplexAPSInt*)(char*)Data.buffer)->Imag;
242 return ((ComplexAPFloat*)(char*)Data.buffer)->Imag;
367 ((ComplexAPSInt *)(char *)Data.buffer)->Imag = std::move(I);
374 ((ComplexAPFloat *)(char *)Data.buffer)->Imag = std::move(I);
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 82 /// EmitStoreOfComplex - Store the specified real/imag parts into the
190 // LNot,Real,Imag never return complex.
317 /// load the real and imaginary pieces, returning them as Real/Imag.
327 llvm::Value *Real = nullptr, *Imag = nullptr;
336 Imag = Builder.CreateLoad(ImagP, isVolatile, SrcPtr.getName() + ".imag");
339 return ComplexPairTy(Real, Imag);
342 /// EmitStoreOfComplex - Store the specified real/imag parts into the
374 llvm::Value *Imag = CGF.EmitScalarExpr(IL->getSubExpr());
375 return ComplexPairTy(llvm::Constant::getNullValue(Imag->getType()), Imag)
    [all...]
CGBuiltin.cpp 486 Value *Imag = ComplexVal.second;
488 Imag->getType()->isFPOrFPVectorTy()
489 ? llvm::ConstantFP::getZeroValueForNegation(Imag->getType())
490 : llvm::Constant::getNullValue(Imag->getType());
492 Imag = Builder.CreateFSub(Zero, Imag, "sub");
493 return RValue::getComplex(std::make_pair(Real, Imag));
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 267 void addComplexUnchecked(QualType EltTy, bool Imag) {
269 Entry.ArrayIndex = Imag;
    [all...]

Completed in 630 milliseconds