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

  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCAsmMacro.h 35 // Real values.
36 Real,
  /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) {}
447 return ((ComplexAPSInt *)(char *)&Data)->Real;
463 return ((ComplexAPFloat *)(char *)&Data)->Real;
601 ((ComplexAPSInt *)(char *)&Data)->Real = std::move(R);
608 ((ComplexAPFloat *)(char *)&Data)->Real = std::move(R);
  /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;
362 Real = Builder.CreateLoad(RealP, isVolatile, SrcPtr.getName() + ".real");
370 return ComplexPairTy(Real, Imag);
373 /// EmitStoreOfComplex - Store the specified real/imag parts into the
435 // complex type, both the real and imaginary parts follow the conversio
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 6112 // If the common type isn't a real floating type, then the arguments were
6184 // Despite supporting _Complex int, GCC requires a real floating point type
6202 Expr *Real = TheCall->getArg(0);
6204 if (!Context.hasSameType(Real->getType(), Imag->getType())) {
6205 return Diag(Real->getBeginLoc(),
6207 << Real->getType() << Imag->getType()
6208 << Real->getSourceRange() << Imag->getSourceRange();
6214 if (Real->getType()->isFloat16Type())
6217 if (Real->getType()->isHalfType())
6221 TheCall->setType(Context.getComplexType(Real->getType()))
    [all...]

Completed in 40 milliseconds