Home
last modified time | relevance | path

Searched refs:CreateFRem (Results 1 – 24 of 24) sorted by relevance

/external/swiftshader/third_party/LLVM/include/llvm/Support/
DNoFolder.h115 Instruction *CreateFRem(Constant *LHS, Constant *RHS) const { in CreateFRem() function
116 return BinaryOperator::CreateFRem(LHS, RHS); in CreateFRem()
DConstantFolder.h72 Constant *CreateFRem(Constant *LHS, Constant *RHS) const { in CreateFRem() function
DTargetFolder.h86 Constant *CreateFRem(Constant *LHS, Constant *RHS) const { in CreateFRem() function
DIRBuilder.h602 Value *CreateFRem(Value *LHS, Value *RHS, const Twine &Name = "") {
605 return Insert(Folder.CreateFRem(LC, RC), Name);
606 return Insert(BinaryOperator::CreateFRem(LHS, RHS), Name);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
DNoFolder.h136 Instruction *CreateFRem(Constant *LHS, Constant *RHS) const { in CreateFRem() function
137 return BinaryOperator::CreateFRem(LHS, RHS); in CreateFRem()
DConstantFolder.h85 Constant *CreateFRem(Constant *LHS, Constant *RHS) const { in CreateFRem() function
DIRBuilder.h1229 Value *CreateFRem(Value *L, Value *R, const Twine &Name = "",
1232 Instruction *I = setFPAttrs(BinaryOperator::CreateFRem(L, R), FPMD, FMF);
1241 Instruction *I = setFPAttrs(BinaryOperator::CreateFRem(L, R), nullptr,
/external/llvm/include/llvm/IR/
DNoFolder.h115 Instruction *CreateFRem(Constant *LHS, Constant *RHS) const { in CreateFRem() function
116 return BinaryOperator::CreateFRem(LHS, RHS); in CreateFRem()
DConstantFolder.h72 Constant *CreateFRem(Constant *LHS, Constant *RHS) const { in CreateFRem() function
DIRBuilder.h888 Value *CreateFRem(Value *LHS, Value *RHS, const Twine &Name = "",
892 return Insert(Folder.CreateFRem(LC, RC), Name);
893 return Insert(AddFPMathAttributes(BinaryOperator::CreateFRem(LHS, RHS),
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
DTargetFolder.h85 Constant *CreateFRem(Constant *LHS, Constant *RHS) const { in CreateFRem() function
/external/llvm/include/llvm/Analysis/
DTargetFolder.h86 Constant *CreateFRem(Constant *LHS, Constant *RHS) const { in CreateFRem() function
/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/
Dir_builder_mixin.h309 return mixin_builder()->CreateFRem(std::forward<Args>(args)...); in FRem()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineCasts.cpp1355 Value *ExactResult = Builder->CreateFRem(LHSOrig, RHSOrig); in visitFPTrunc()
/external/swiftshader/third_party/LLVM/lib/VMCore/
DCore.cpp1917 return wrap(unwrap(B)->CreateFRem(unwrap(LHS), unwrap(RHS), Name)); in LLVMBuildFRem()
/external/llvm/lib/IR/
DCore.cpp2626 return wrap(unwrap(B)->CreateFRem(unwrap(LHS), unwrap(RHS), Name)); in LLVMBuildFRem()
/external/llvm/bindings/go/llvm/
Dir.go1370 func (b Builder) CreateFRem(lhs, rhs Value, name string) (v Value) { func
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/go/llvm/
Dir.go1437 func (b Builder) CreateFRem(lhs, rhs Value, name string) (v Value) { func
/external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
DCore.cpp2938 return wrap(unwrap(B)->CreateFRem(unwrap(LHS), unwrap(RHS), Name)); in LLVMBuildFRem()
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
Dllvm.mli1956 See the method [llvm::LLVMBuilder::CreateFRem]. *)
/external/swiftshader/third_party/llvm-7.0/llvm/bindings/ocaml/llvm/
Dllvm.mli2204 See the method [llvm::LLVMBuilder::CreateFRem]. *)
/external/llvm/bindings/ocaml/llvm/
Dllvm.mli2188 See the method [llvm::LLVMBuilder::CreateFRem]. *)
/external/swiftshader/src/Reactor/
DLLVMReactor.cpp1103 return V(::builder->CreateFRem(V(lhs), V(rhs))); in createFRem()
/external/clang/lib/CodeGen/
DCGBuiltin.cpp530 Value *Result = Builder.CreateFRem(Arg1, Arg2, "fmod"); in EmitBuiltinExpr()