HomeSort by relevance Sort by last modified time
    Searched defs:fp_t (Results 1 - 2 of 2) sorted by null

  /external/compiler-rt/lib/
fp_lib.h 33 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/
functional-cast.cpp 69 typedef f *fp_t; typedef
70 f *fpp = fp_t(&fp);

Completed in 58 milliseconds