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

  /external/swiftshader/src/Reactor/
Nucleus.hpp 79 static Value *createFSub(Value *lhs, Value *rhs);
SubzeroReactor.cpp 753 Value *Nucleus::createFSub(Value *lhs, Value *rhs)
825 return createFSub(negativeZero, v);
    [all...]
LLVMReactor.cpp 439 Value *Nucleus::createFSub(Value *lhs, Value *rhs)
441 return V(::builder->CreateFSub(lhs, rhs));
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 181 Value *createFSub(Value *Opnd0, Value *Opnd1);
480 createFSub(AddSub0, AddSub1);
717 LastVal = createFSub(V, LastVal);
719 LastVal = createFSub(LastVal, V);
736 Value *FAddCombine::createFSub(Value *Opnd0, Value *Opnd1) {
737 Value *V = Builder->CreateFSub(Opnd0, Opnd1);
745 Value *NewV = createFSub(Zero, V);
    [all...]

Completed in 65 milliseconds