• Home
  • Raw
  • Download

Lines Matching refs:f

123   FUNCTION(acos, double (*f)(double));  in math_h()
124 FUNCTION(acosf, float (*f)(float)); in math_h()
125 FUNCTION(acosh, double (*f)(double)); in math_h()
126 FUNCTION(acoshf, float (*f)(float)); in math_h()
127 FUNCTION(acoshl, long double (*f)(long double)); in math_h()
128 FUNCTION(acosl, long double (*f)(long double)); in math_h()
130 FUNCTION(asin, double (*f)(double)); in math_h()
131 FUNCTION(asinf, float (*f)(float)); in math_h()
132 FUNCTION(asinh, double (*f)(double)); in math_h()
133 FUNCTION(asinhf, float (*f)(float)); in math_h()
134 FUNCTION(asinhl, long double (*f)(long double)); in math_h()
135 FUNCTION(asinl, long double (*f)(long double)); in math_h()
137 FUNCTION(atan, double (*f)(double)); in math_h()
138 FUNCTION(atan2, double (*f)(double, double)); in math_h()
139 FUNCTION(atan2f, float (*f)(float, float)); in math_h()
140 FUNCTION(atan2l, long double (*f)(long double, long double)); in math_h()
141 FUNCTION(atanf, float (*f)(float)); in math_h()
142 FUNCTION(atanh, double (*f)(double)); in math_h()
143 FUNCTION(atanhf, float (*f)(float)); in math_h()
144 FUNCTION(atanhl, long double (*f)(long double)); in math_h()
145 FUNCTION(atanl, long double (*f)(long double)); in math_h()
147 FUNCTION(cbrt, double (*f)(double)); in math_h()
148 FUNCTION(cbrtf, float (*f)(float)); in math_h()
149 FUNCTION(cbrtl, long double (*f)(long double)); in math_h()
151 FUNCTION(ceil, double (*f)(double)); in math_h()
152 FUNCTION(ceilf, float (*f)(float)); in math_h()
153 FUNCTION(ceill, long double (*f)(long double)); in math_h()
155 FUNCTION(copysign, double (*f)(double, double)); in math_h()
156 FUNCTION(copysignf, float (*f)(float, float)); in math_h()
157 FUNCTION(copysignl, long double (*f)(long double, long double)); in math_h()
159 FUNCTION(cos, double (*f)(double)); in math_h()
160 FUNCTION(cosf, float (*f)(float)); in math_h()
161 FUNCTION(cosh, double (*f)(double)); in math_h()
162 FUNCTION(coshf, float (*f)(float)); in math_h()
163 FUNCTION(coshl, long double (*f)(long double)); in math_h()
164 FUNCTION(cosl, long double (*f)(long double)); in math_h()
166 FUNCTION(erf, double (*f)(double)); in math_h()
167 FUNCTION(erfc, double (*f)(double)); in math_h()
168 FUNCTION(erfcf, float (*f)(float)); in math_h()
169 FUNCTION(erfcl, long double (*f)(long double)); in math_h()
170 FUNCTION(erff, float (*f)(float)); in math_h()
171 FUNCTION(erfl, long double (*f)(long double)); in math_h()
173 FUNCTION(exp, double (*f)(double)); in math_h()
174 FUNCTION(exp2, double (*f)(double)); in math_h()
175 FUNCTION(exp2f, float (*f)(float)); in math_h()
176 FUNCTION(exp2l, long double (*f)(long double)); in math_h()
177 FUNCTION(expf, float (*f)(float)); in math_h()
178 FUNCTION(expl, long double (*f)(long double)); in math_h()
179 FUNCTION(expm1, double (*f)(double)); in math_h()
180 FUNCTION(expm1f, float (*f)(float)); in math_h()
181 FUNCTION(expm1l, long double (*f)(long double)); in math_h()
183 FUNCTION(fabs, double (*f)(double)); in math_h()
184 FUNCTION(fabsf, float (*f)(float)); in math_h()
185 FUNCTION(fabsl, long double (*f)(long double)); in math_h()
187 FUNCTION(fdim, double (*f)(double, double)); in math_h()
188 FUNCTION(fdimf, float (*f)(float, float)); in math_h()
189 FUNCTION(fdiml, long double (*f)(long double, long double)); in math_h()
191 FUNCTION(floor, double (*f)(double)); in math_h()
192 FUNCTION(floorf, float (*f)(float)); in math_h()
193 FUNCTION(floorl, long double (*f)(long double)); in math_h()
195 FUNCTION(fma, double (*f)(double, double, double)); in math_h()
196 FUNCTION(fmaf, float (*f)(float, float, float)); in math_h()
197 FUNCTION(fmal, long double (*f)(long double, long double, long double)); in math_h()
199 FUNCTION(fmax, double (*f)(double, double)); in math_h()
200 FUNCTION(fmaxf, float (*f)(float, float)); in math_h()
201 FUNCTION(fmaxl, long double (*f)(long double, long double)); in math_h()
203 FUNCTION(fmin, double (*f)(double, double)); in math_h()
204 FUNCTION(fminf, float (*f)(float, float)); in math_h()
205 FUNCTION(fminl, long double (*f)(long double, long double)); in math_h()
207 FUNCTION(fmod, double (*f)(double, double)); in math_h()
208 FUNCTION(fmodf, float (*f)(float, float)); in math_h()
209 FUNCTION(fmodl, long double (*f)(long double, long double)); in math_h()
211 FUNCTION(frexp, double (*f)(double, int*)); in math_h()
212 FUNCTION(frexpf, float (*f)(float, int*)); in math_h()
213 FUNCTION(frexpl, long double (*f)(long double, int*)); in math_h()
215 FUNCTION(hypot, double (*f)(double, double)); in math_h()
216 FUNCTION(hypotf, float (*f)(float, float)); in math_h()
217 FUNCTION(hypotl, long double (*f)(long double, long double)); in math_h()
219 FUNCTION(ilogb, int (*f)(double)); in math_h()
220 FUNCTION(ilogbf, int (*f)(float)); in math_h()
221 FUNCTION(ilogbl, int (*f)(long double)); in math_h()
223 FUNCTION(j0, double (*f)(double)); in math_h()
224 FUNCTION(j1, double (*f)(double)); in math_h()
225 FUNCTION(jn, double (*f)(int, double)); in math_h()
227 FUNCTION(ldexp, double (*f)(double, int)); in math_h()
228 FUNCTION(ldexpf, float (*f)(float, int)); in math_h()
229 FUNCTION(ldexpl, long double (*f)(long double, int)); in math_h()
231 FUNCTION(lgamma, double (*f)(double)); in math_h()
232 FUNCTION(lgammaf, float (*f)(float)); in math_h()
233 FUNCTION(lgammal, long double (*f)(long double)); in math_h()
235 FUNCTION(llrint, long long (*f)(double)); in math_h()
236 FUNCTION(llrintf, long long (*f)(float)); in math_h()
237 FUNCTION(llrintl, long long (*f)(long double)); in math_h()
239 FUNCTION(llround, long long (*f)(double)); in math_h()
240 FUNCTION(llroundf, long long (*f)(float)); in math_h()
241 FUNCTION(llroundl, long long (*f)(long double)); in math_h()
243 FUNCTION(log, double (*f)(double)); in math_h()
244 FUNCTION(log10, double (*f)(double)); in math_h()
245 FUNCTION(log10f, float (*f)(float)); in math_h()
246 FUNCTION(log10l, long double (*f)(long double)); in math_h()
247 FUNCTION(log1p, double (*f)(double)); in math_h()
248 FUNCTION(log1pf, float (*f)(float)); in math_h()
249 FUNCTION(log1pl, long double (*f)(long double)); in math_h()
250 FUNCTION(log2, double (*f)(double)); in math_h()
251 FUNCTION(log2f, float (*f)(float)); in math_h()
252 FUNCTION(log2l, long double (*f)(long double)); in math_h()
253 FUNCTION(logb, double (*f)(double)); in math_h()
254 FUNCTION(logbf, float (*f)(float)); in math_h()
255 FUNCTION(logbl, long double (*f)(long double)); in math_h()
256 FUNCTION(logf, float (*f)(float)); in math_h()
257 FUNCTION(logl, long double (*f)(long double)); in math_h()
259 FUNCTION(lrint, long (*f)(double)); in math_h()
260 FUNCTION(lrintf, long (*f)(float)); in math_h()
261 FUNCTION(lrintl, long (*f)(long double)); in math_h()
263 FUNCTION(lround, long (*f)(double)); in math_h()
264 FUNCTION(lroundf, long (*f)(float)); in math_h()
265 FUNCTION(lroundl, long (*f)(long double)); in math_h()
267 FUNCTION(modf, double (*f)(double, double*)); in math_h()
268 FUNCTION(modff, float (*f)(float, float*)); in math_h()
269 FUNCTION(modfl, long double (*f)(long double, long double*)); in math_h()
271 FUNCTION(nan, double (*f)(const char*)); in math_h()
272 FUNCTION(nanf, float (*f)(const char*)); in math_h()
273 FUNCTION(nanl, long double (*f)(const char*)); in math_h()
275 FUNCTION(nearbyint, double (*f)(double)); in math_h()
276 FUNCTION(nearbyintf, float (*f)(float)); in math_h()
277 FUNCTION(nearbyintl, long double (*f)(long double)); in math_h()
279 FUNCTION(nextafter, double (*f)(double, double)); in math_h()
280 FUNCTION(nextafterf, float (*f)(float, float)); in math_h()
281 FUNCTION(nextafterl, long double (*f)(long double, long double)); in math_h()
283 FUNCTION(nexttoward, double (*f)(double, long double)); in math_h()
284 FUNCTION(nexttowardf, float (*f)(float, long double)); in math_h()
285 FUNCTION(nexttowardl, long double (*f)(long double, long double)); in math_h()
287 FUNCTION(pow, double (*f)(double, double)); in math_h()
288 FUNCTION(powf, float (*f)(float, float)); in math_h()
289 FUNCTION(powl, long double (*f)(long double, long double)); in math_h()
291 FUNCTION(remainder, double (*f)(double, double)); in math_h()
292 FUNCTION(remainderf, float (*f)(float, float)); in math_h()
293 FUNCTION(remainderl, long double (*f)(long double, long double)); in math_h()
295 FUNCTION(remquo, double (*f)(double, double, int*)); in math_h()
296 FUNCTION(remquof, float (*f)(float, float, int*)); in math_h()
297 FUNCTION(remquol, long double (*f)(long double, long double, int*)); in math_h()
299 FUNCTION(rint, double (*f)(double)); in math_h()
300 FUNCTION(rintf, float (*f)(float)); in math_h()
301 FUNCTION(rintl, long double (*f)(long double)); in math_h()
303 FUNCTION(round, double (*f)(double)); in math_h()
304 FUNCTION(roundf, float (*f)(float)); in math_h()
305 FUNCTION(roundl, long double (*f)(long double)); in math_h()
307 FUNCTION(scalbln, double (*f)(double, long)); in math_h()
308 FUNCTION(scalblnf, float (*f)(float, long)); in math_h()
309 FUNCTION(scalblnl, long double (*f)(long double, long)); in math_h()
311 FUNCTION(scalbn, double (*f)(double, int)); in math_h()
312 FUNCTION(scalbnf, float (*f)(float, int)); in math_h()
313 FUNCTION(scalbnl, long double (*f)(long double, int)); in math_h()
315 FUNCTION(sin, double (*f)(double)); in math_h()
316 FUNCTION(sinf, float (*f)(float)); in math_h()
317 FUNCTION(sinh, double (*f)(double)); in math_h()
318 FUNCTION(sinhf, float (*f)(float)); in math_h()
319 FUNCTION(sinhl, long double (*f)(long double)); in math_h()
320 FUNCTION(sinl, long double (*f)(long double)); in math_h()
322 FUNCTION(sqrt, double (*f)(double)); in math_h()
323 FUNCTION(sqrtf, float (*f)(float)); in math_h()
324 FUNCTION(sqrtl, long double (*f)(long double)); in math_h()
326 FUNCTION(tan, double (*f)(double)); in math_h()
327 FUNCTION(tanf, float (*f)(float)); in math_h()
328 FUNCTION(tanh, double (*f)(double)); in math_h()
329 FUNCTION(tanhf, float (*f)(float)); in math_h()
330 FUNCTION(tanhl, long double (*f)(long double)); in math_h()
331 FUNCTION(tanl, long double (*f)(long double)); in math_h()
333 FUNCTION(tgamma, double (*f)(double)); in math_h()
334 FUNCTION(tgammaf, float (*f)(float)); in math_h()
335 FUNCTION(tgammal, long double (*f)(long double)); in math_h()
337 FUNCTION(trunc, double (*f)(double)); in math_h()
338 FUNCTION(truncf, float (*f)(float)); in math_h()
339 FUNCTION(truncl, long double (*f)(long double)); in math_h()
341 FUNCTION(y0, double (*f)(double)); in math_h()
342 FUNCTION(y1, double (*f)(double)); in math_h()
343 FUNCTION(yn, double (*f)(int, double)); in math_h()