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

  /external/clang/test/SemaTemplate/
qualified-names-diag.cpp 8 typedef float Real;
14 vector<Real> v2;
  /external/clang/include/clang/AST/
APValue.h 45 APSInt Real, Imag;
46 ComplexAPSInt() : Real(1), Imag(1) {}
49 APFloat Real, Imag;
50 ComplexAPFloat() : Real(0.0), Imag(0.0) {}
142 return ((ComplexAPSInt*)(char*)Data)->Real;
158 return ((ComplexAPFloat*)(char*)Data)->Real;
194 ((ComplexAPSInt*)(char*)Data)->Real = R;
201 ((ComplexAPFloat*)(char*)Data)->Real = R;
  /external/llvm/include/llvm/MC/MCParser/
MCAsmLexer.h 35 // Real values.
36 Real,
  /external/clang/lib/CodeGen/
CGExprComplex.cpp 75 /// the real and imaginary pieces.
88 /// EmitStoreOfComplex - Store the specified real/imag parts into the
180 // LNot,Real,Imag never return complex.
281 /// load the real and imaginary pieces, returning them as Real/Imag.
284 llvm::Value *Real=0, *Imag=0;
289 Real = Builder.CreateLoad(RealP, isVolatile, SrcPtr->getName() + ".real");
297 return ComplexPairTy(Real, Imag);
300 /// EmitStoreOfComplex - Store the specified real/imag parts into th
    [all...]
CGExprConstant.cpp 746 Expr *Real = ILE->getInit(0);
749 Complex[0] = CGM.EmitConstantExpr(Real, Real->getType(), CGF);
    [all...]
CGCall.cpp 367 llvm::Value *RealAddr = Builder.CreateStructGEP(Addr, 0, "real");
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]

Completed in 192 milliseconds