Home
last modified time | relevance | path

Searched defs:FTPrinter (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/compiler-rt/lib/nsan/
H A Dnsan.cpp119 template <typename FT> struct FTPrinter {}; struct
121 template <> struct FTPrinter<double> { struct
122 static PrintBuffer dec(double value) { in dec()
127 static PrintBuffer hex(double value) { in hex()
134 template <> struct FTPrinter<float> : FTPrinter<double> {}; struct
136 template <> struct FTPrinter<long double> { struct
137 static PrintBuffer dec(long double value) { in dec()
142 static PrintBuffer hex(long double value) { in hex()
150 template <> struct FTPrinter<__float128> : FTPrinter<long double> {}; struct