Home
last modified time | relevance | path

Searched refs:RealType (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/libcxx/include/
H A Drandom532 explicit uniform_real_distribution(RealType a = 0.0, RealType b = 1.0); // before C++20
534 explicit uniform_real_distribution(RealType a, RealType b = 1.0); // C++20
945 explicit gamma_distribution(RealType alpha, RealType beta = 1.0); // C++20
1003 explicit weibull_distribution(RealType a = 1.0, RealType b = 1.0); // before C++20
1005 explicit weibull_distribution(RealType a, RealType b = 1.0); // C++20
1065 explicit extreme_value_distribution(RealType a, RealType b = 1.0); // C++20
1125 explicit normal_distribution(RealType mean, RealType stddev = 1.0); // C++20
1301 explicit cauchy_distribution(RealType a = 0.0, RealType b = 1.0); // before C++20
1303 explicit cauchy_distribution(RealType a, RealType b = 1.0); // C++20
1361 explicit fisher_f_distribution(RealType m = 1.0, RealType n = 1.0); // before C++20
[all …]
/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeFunctionSig.cpp30 std::unique_ptr<PDBSymbol> RealType) in NativeTypeFunctionArg() argument
32 RealType(std::move(RealType)) {} in NativeTypeFunctionArg()
42 SymIndexId getTypeId() const override { return RealType->getSymIndexId(); } in getTypeId()
44 std::unique_ptr<PDBSymbol> RealType; member in __anon5704b30f0111::NativeTypeFunctionArg
/llvm-project-15.0.7/flang/lib/Optimizer/Dialect/
H A DFIRType.cpp482 return fir::RealType::get(getContext(), getFKind()); in getElementType()
566 mlir::Type fir::RealType::parse(mlir::AsmParser &parser) { in parse()
567 return parseKindSingleton<fir::RealType>(parser); in parse()
570 void fir::RealType::print(mlir::AsmPrinter &printer) const { in print()
575 fir::RealType::verify(llvm::function_ref<mlir::InFlightDiagnostic()> emitError, in verify()
975 LLVMPointerType, PointerType, RealType, RecordType, ReferenceType, in registerTypes()
H A DFIROps.cpp895 return ty.isa<mlir::FloatType, fir::RealType>(); in isFloatCompatible()
/llvm-project-15.0.7/flang/lib/Evaluate/
H A Dintrinsics.cpp63 static constexpr CategorySet RealType{TypeCategory::Real}; variable
67 static constexpr CategorySet IntOrRealType{IntType | RealType};
68 static constexpr CategorySet FloatingType{RealType | ComplexType};
69 static constexpr CategorySet NumericType{IntType | RealType | ComplexType};
70 static constexpr CategorySet RelatableType{IntType | RealType | CharType};
73 IntType | RealType | ComplexType | CharType | LogicalType};
115 RealType, KindCode::doublePrecision};
122 static constexpr TypePattern AnyReal{RealType, KindCode::any};
142 static constexpr TypePattern SameReal{RealType, KindCode::same};
159 static constexpr TypePattern OperandReal{RealType, KindCode::operand};
[all …]
/llvm-project-15.0.7/flang/include/flang/Optimizer/Dialect/
H A DFIRType.h105 return t.isa<fir::RealType, mlir::FloatType>(); in isa_real()
H A DFIROps.td2565 "fir::RealType, fir::RecordType>()">]>]>,
/llvm-project-15.0.7/flang/lib/Optimizer/CodeGen/
H A DTarget.cpp29 if (auto ty = type.dyn_cast<fir::RealType>()) in floatToSemantics()
H A DTypeConverter.h100 [&](fir::RealType real) { return convertRealType(real.getFKind()); }); in LLVMTypeConverter()
H A DCodeGen.cpp1220 auto ty = boxEleTy.cast<fir::RealType>();
/llvm-project-15.0.7/flang/lib/Lower/
H A DMangler.cpp260 if (auto real{t.dyn_cast<fir::RealType>()}) { in typeToString()
H A DIntrinsicCall.cpp1357 if (auto r{t.dyn_cast<fir::RealType>()}) in getFloatingPointWidth()
H A DConvertExpr.cpp5943 if (auto realTy = eleTy.dyn_cast<fir::RealType>()) in genarr()
/llvm-project-15.0.7/flang/lib/Optimizer/Builder/
H A DFIRBuilder.cpp101 if (auto ty = fltTy.dyn_cast<fir::RealType>()) in createRealConstant()