Searched defs:APFloat (Results 1 - 6 of 6) sorted by relevance
/external/swiftshader/third_party/LLVM/include/llvm/ADT/ |
H A D | APFloat.h | 1 //== llvm/Support/APFloat.h - Arbitrary Precision Floating Point -*- C++ -*-==// 125 class APFloat { class in namespace:llvm 182 APFloat(const fltSemantics &); // Default construct to 0.0 183 APFloat(const fltSemantics &, StringRef); 184 APFloat(const fltSemantics &, integerPart); 185 APFloat(const fltSemantics &, fltCategory, bool negative); 186 APFloat(const fltSemantics &, uninitializedTag); 187 explicit APFloat(double d); 188 explicit APFloat(float f); 189 explicit APFloat(cons [all...] |
/external/clang/include/clang/AST/ |
H A D | APValue.h | 1 //===--- APValue.h - Union class for APFloat/APSInt/Complex -----*- C++ -*-===// 18 #include "llvm/ADT/APFloat.h" 36 /// [APSInt] [APFloat], [Complex APSInt] [Complex APFloat], [Expr + Offset], 40 typedef llvm::APFloat APFloat; typedef in class:clang::APValue 76 APFloat Real, Imag; 112 typedef llvm::AlignedCharArrayUnion<void *, APSInt, APFloat, ComplexAPSInt, 124 explicit APValue(APFloat F) : Kind(Uninitialized) { 133 APValue(APFloat [all...] |
/external/llvm/include/llvm/ADT/ |
H A D | APFloat.h | 1 //===- llvm/ADT/APFloat.h - Arbitrary Precision Floating Point ---*- C++ -*-==// 44 /// APFloat uses bignum integer arithmetic as provided by static functions in 105 /// APFloat does not provide any exception handling beyond default exception 124 class APFloat { class in namespace:llvm 188 /// Convenience enum used to construct an uninitialized APFloat. 196 APFloat(const fltSemantics &); // Default construct to 0.0 197 APFloat(const fltSemantics &, StringRef); 198 APFloat(const fltSemantics &, integerPart); 199 APFloat(const fltSemantics &, uninitializedTag); 200 APFloat(cons [all...] |
/external/swiftshader/third_party/LLVM/lib/AsmParser/ |
H A D | LLToken.h | 152 APFloat, // APFloatVal enumerator in enum:llvm::lltok::Kind
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
H A D | APFloat.h | 1 //===- llvm/ADT/APFloat.h - Arbitrary Precision Floating Point ---*- C++ -*-==// 29 class APFloat; 48 /// APFloat uses bignum integer arithmetic as provided by static functions in 109 /// APFloat does not provide any exception handling beyond default exception 129 // This is the common type definitions shared by APFloat and its internal 189 /// Convenience enum used to construct an uninitialized APFloat. 238 /// Used to insert APFloat objects, or objects that contain APFloat objects, 299 /// \brief A static helper to produce a copy of an APFloat value with its sign 300 /// copied from some other APFloat 653 class APFloat : public APFloatBase { class in namespace:llvm 798 APFloat() : U(IEEEdouble()) { function in class:llvm::APFloat 802 explicit APFloat(IEEEFloat F, const fltSemantics &S) : U(std::move(F), S) {} function in class:llvm::APFloat 803 explicit APFloat(DoubleAPFloat F, const fltSemantics &S) function in class:llvm::APFloat 816 APFloat(const fltSemantics &Semantics) : U(Semantics) {} function in class:llvm::APFloat 818 APFloat(const fltSemantics &Semantics, integerPart I) : U(Semantics, I) {} function in class:llvm::APFloat 820 APFloat(const fltSemantics &Semantics, uninitializedTag) function in class:llvm::APFloat 822 APFloat(const fltSemantics &Semantics, const APInt &I) : U(Semantics, I) {} function in class:llvm::APFloat 823 explicit APFloat(double d) : U(IEEEFloat(d), IEEEdouble()) {} function in class:llvm::APFloat 824 explicit APFloat(float f) : U(IEEEFloat(f), IEEEsingle()) {} function in class:llvm::APFloat [all...] |
/external/llvm/lib/AsmParser/ |
H A D | LLToken.h | 358 APFloat, // APFloatVal enumerator in enum:llvm::lltok::Kind
|
Completed in 426 milliseconds