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.cpp138 template <typename FT> struct FTPrinter {}; struct
140 template <> struct FTPrinter<double> { struct
141 static PrintBuffer dec(double value) { in dec()
146 static PrintBuffer hex(double value) { in hex()
153 template <> struct FTPrinter<float> : FTPrinter<double> {}; struct
155 template <> struct FTPrinter<long double> { struct
156 static PrintBuffer dec(long double value) { in dec()
161 static PrintBuffer hex(long double value) { in hex()
169 template <> struct FTPrinter<__float128> : FTPrinter<long double> {}; struct