Home
last modified time | relevance | path

Searched refs:ApproxFunc (Results 1 – 11 of 11) sorted by relevance

/external/llvm-project/llvm/include/llvm/IR/
DOperator.h186 ApproxFunc = (1 << 6) enumerator
211 bool approxFunc() const { return 0 != (Flags & ApproxFunc); } in approxFunc()
235 Flags = (Flags & ~ApproxFunc) | B * ApproxFunc;
299 (SubclassOptionalData & ~FastMathFlags::ApproxFunc) | in setHasApproxFunc()
300 (B * FastMathFlags::ApproxFunc); in setHasApproxFunc()
324 (SubclassOptionalData & FastMathFlags::ApproxFunc) != 0); in isFast()
360 return (SubclassOptionalData & FastMathFlags::ApproxFunc) != 0; in hasApproxFunc()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DOperator.h186 ApproxFunc = (1 << 6) enumerator
211 bool approxFunc() const { return 0 != (Flags & ApproxFunc); } in approxFunc()
235 Flags = (Flags & ~ApproxFunc) | B * ApproxFunc;
299 (SubclassOptionalData & ~FastMathFlags::ApproxFunc) | in setHasApproxFunc()
300 (B * FastMathFlags::ApproxFunc); in setHasApproxFunc()
324 (SubclassOptionalData & FastMathFlags::ApproxFunc) != 0); in isFast()
360 return (SubclassOptionalData & FastMathFlags::ApproxFunc) != 0; in hasApproxFunc()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Bitcode/
DLLVMBitCodes.h453 ApproxFunc = (1 << 6), enumerator
/external/llvm-project/llvm/include/llvm/Bitcode/
DLLVMBitCodes.h465 ApproxFunc = (1 << 6), enumerator
/external/llvm-project/clang/include/clang/Basic/
DLangOptions.h438 setAllowApproxFunc(LO.ApproxFunc); in FPOptions()
DLangOptions.def203 BENIGN_LANGOPT(ApproxFunc , 1, 0, "Permit Floating Point approximation")
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp1416 Flags |= bitc::ApproxFunc; in getOptimizationFlags()
/external/llvm-project/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp1450 Flags |= bitc::ApproxFunc; in getOptimizationFlags()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp1174 if (0 != (Val & bitc::ApproxFunc)) in getDecodedFastMathFlags()
/external/llvm-project/llvm/lib/Bitcode/Reader/
DBitcodeReader.cpp1180 if (0 != (Val & bitc::ApproxFunc)) in getDecodedFastMathFlags()
/external/llvm-project/clang/include/clang/Driver/
DOptions.td1282 MarshallingInfoFlag<"LangOpts->ApproxFunc">, ImpliedByAnyOf<[menable_unsafe_fp_math]>;