HomeSort by: relevance | last modified time | path
    Searched refs:ComplexVal (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmtOpenMP.cpp 5332 CodeGenFunction::ComplexPairTy ComplexVal;
5339 ComplexVal = CodeGenFunction::ComplexPairTy(
5346 ComplexVal.first = CGF.EmitScalarConversion(
5348 ComplexVal.second = CGF.EmitScalarConversion(
5351 return ComplexVal;
CGBuiltin.cpp 2572 ComplexPairTy ComplexVal = EmitComplexExpr(E->getArg(0));
2573 Value *Real = ComplexVal.first;
2574 Value *Imag = ComplexVal.second;
2584 ComplexPairTy ComplexVal = EmitComplexExpr(E->getArg(0));
2585 return RValue::get(ComplexVal.first);
2632 ComplexPairTy ComplexVal = EmitComplexExpr(E->getArg(0));
2633 return RValue::get(ComplexVal.second);

Completed in 33 milliseconds