Searched defs:fp_t (Results 1 - 2 of 2) sorted by relevance

/external/compiler-rt/lib/
H A Dfp_lib.h33 typedef float fp_t; typedef
52 typedef double fp_t; typedef
106 static inline rep_t toRep(fp_t x) {
107 const union { fp_t f; rep_t i; } rep = {.f = x};
111 static inline fp_t fromRep(rep_t x) {
112 const union { fp_t f; rep_t i; } rep = {.i = x};
/external/clang/test/SemaCXX/
H A Dfunctional-cast.cpp68 typedef f *fp_t; typedef
69 f *fpp = fp_t(&fp);

Completed in 82 milliseconds