Searched defs:xfp (Results 1 - 3 of 3) sorted by relevance

/external/clang/test/CodeGenCXX/
H A Dimplicit-instantiation-1.cpp13 void foo(X<int> &xi, X<float> *xfp, int i, float f) { argument
21 xfp->f(f);
/external/srec/srec/clib/
H A Dimeld_rd.c100 double xfp; local
136 xfp = scale * (onerow[ii] - UTB_MEAN) + UTB_MEAN;
137 if (xfp > 0.0)
138 xfp += 0.5;
139 else if (xfp < 0.0)
140 xfp -= 0.5;
142 prep->offset[ii] = (imeldata) xfp;
H A Dmatx_ops.c78 double sum_coef, xfp; local
112 xfp = ((double)scale_coef) * matrix[ii][jj];
113 if (xfp > 0.0)
114 xfp += 0.5;
115 else if (xfp < 0.0)
116 xfp -= 0.5;
117 ASSERT(xfp < FIXED_MAX);
118 ASSERT(xfp > -FIXED_MAX);
119 fixmat[ii][jj] = (imeldata) xfp;

Completed in 134 milliseconds