Searched defs:fn (Results 1 - 21 of 21) sorted by relevance

/bionic/libm/amd64/
H A Ds_llrint.S5 #define fn llrint define
H A Ds_llrintf.S5 #define fn llrintf define
H A Ds_lrint.S29 #ifndef fn
31 #define fn lrint define
34 ENTRY(fn) function
H A Ds_lrintf.S29 #ifndef fn
31 #define fn lrintf define
34 ENTRY(fn) function
/bionic/libm/src/
H A De_ldexpf.c19 __ieee754_ldexpf(float x, int fn) argument
21 return __ieee754_scalbf(x,fn);
H A De_scalb.c19 * __ieee754_scalb(x, fn) is provide for
29 __ieee754_scalb(double x, int fn) argument
32 __ieee754_scalb(double x, double fn)
36 return scalbn(x,fn);
38 if (isnan(x)||isnan(fn)) return x*fn;
39 if (!finite(fn)) {
40 if(fn>0.0) return x*fn;
41 else return x/(-fn);
[all...]
H A De_scalbf.c25 __ieee754_scalbf(float x, int fn) argument
28 __ieee754_scalbf(float x, float fn)
32 return scalbnf(x,fn);
34 if ((isnanf)(x)||(isnanf)(fn)) return x*fn;
35 if (!finitef(fn)) {
36 if(fn>(float)0.0) return x*fn;
37 else return x/(-fn);
39 if (rintf(fn)!
[all...]
H A Ds_llrint.c7 #define fn llrint macro
H A Ds_llrintf.c7 #define fn llrintf macro
H A Ds_lrintf.c7 #define fn lrintf macro
H A Ds_llround.c9 #define fn llround macro
H A Ds_llroundf.c9 #define fn llroundf macro
H A Ds_llroundl.c9 #define fn llroundl macro
H A Ds_lrint.c36 #define fn lrint macro
47 fn(type x) function
H A Ds_lroundf.c9 #define fn lroundf macro
H A Ds_lroundl.c9 #define fn lroundl macro
H A Ds_lround.c39 #define fn lround macro
56 fn(type x) function
H A De_rem_pio2f.c64 double w,t,r,fn; local
75 fn = (double)n;
76 r = t-fn*pio2_1;
77 w = fn*pio2_1t;
H A De_rem_pio2.c78 double z,w,t,r,fn; local
115 fn = (double)n;
116 r = t-fn*pio2_1;
117 w = fn*pio2_1t; /* 1st round good to 85 bit */
128 w = fn*pio2_2;
130 w = fn*pio2_2t-((t-r)-w);
136 w = fn*pio2_3;
138 w = fn*pio2_3t-((t-r)-w);
/bionic/libc/kernel/common/linux/
H A Dthread_info.h22 long (*fn)(struct restart_block *); member in struct:restart_block
/bionic/libc/stdlib/
H A Datexit.c116 struct atexit_fn fn; local
137 fn = p->fns[n];
149 (*fn.fn_ptr.cxa_func)(fn.fn_arg);
152 (*fn.fn_ptr.cxa_func)(fn.fn_arg);
154 (*fn.fn_ptr.std_func)();

Completed in 163 milliseconds