HomeSort by relevance Sort by last modified time
    Searched refs:DoubleVal (Results 1 - 9 of 9) sorted by null

  /external/llvm/include/llvm/ExecutionEngine/
GenericValue.h 28 double DoubleVal;
36 GenericValue() : DoubleVal(0.0), IntVal(1,0) {}
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 586 GV.FloatVal = float(GV.DoubleVal);
592 GV.DoubleVal = double(GV.FloatVal);
600 GV.DoubleVal = GV.IntVal.roundToDouble();
615 GV.DoubleVal = GV.IntVal.signedRoundToDouble();
632 GV.IntVal = APIntOps::RoundDoubleToAPInt(GV.DoubleVal, BitWidth);
669 GV.DoubleVal = GV.IntVal.bitsToDouble();
677 GV.IntVal = APInt::doubleToBits(GV.DoubleVal);
737 GV.DoubleVal = LHS.DoubleVal + RHS.DoubleVal; break
    [all...]
ExecutionEngineBindings.cpp 46 GenVal->DoubleVal = N;
76 return unwrap(GenVal)->DoubleVal;
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 104 Dest.DoubleVal = fmod(Src1.DoubleVal, Src2.DoubleVal);
373 } else if (X.DoubleVal != X.DoubleVal || Y.DoubleVal != Y.DoubleVal) { \
428 Dest.IntVal = APInt(1,(Src1.DoubleVal == Src1.DoubleVal &&
429 Src2.DoubleVal == Src2.DoubleVal))
    [all...]
ExternalFunctions.cpp 166 *DoublePtr = AV.DoubleVal;
236 case Type::DoubleTyID: Result.DoubleVal = *(double*) ret.data(); break;
393 sprintf(Buffer, FmtBuf, Args[ArgNo++].DoubleVal); break;
  /external/llvm/bindings/ocaml/executionengine/
llvm_executionengine.mli 27 [llvm::GenericValue::DoubleVal] and [llvm::GenericValue::FloatVal]. *)
52 floating point type [fpty]. See the fields [llvm::GenericValue::DoubleVal]
  /external/llvm/lib/ExecutionEngine/MCJIT/
MCJIT.cpp 205 rv.DoubleVal = ((double(*)())(intptr_t)FPtr)();
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 475 rv.DoubleVal = ((double(*)())(intptr_t)FPtr)();
515 C = ConstantFP::get(F->getContext(), APFloat(AV.DoubleVal));
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp     [all...]

Completed in 101 milliseconds