gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 7 of 7 for funcall:logf (0.01 seconds)
t2ex
bsd_source/lib/libc/src_bsd/complex/s_catanf.c - 2.8KB - 124 lines
116:         a = (x2 + (t * t))/a;
117:         w = w + (0.25f * logf (a)) * I;
118:         return (w);
bsd_source/lib/libc/src_bsd/complex/s_clogf.c - 1.9KB - 72 lines
68:         p = cabsf(z);
69:         p = logf(p);
70:         w = p + rr * I;
bsd_source/lib/libc/src_bsd/complex/s_cpowf.c - 2.0KB - 71 lines
66:                 r = r * expf (-y * arga);
67:                 theta = theta + y * logf (absa);
68:         }
bsd_source/lib/libc/src_bsd/math/e_acoshf.c - 1.4KB - 45 lines
34:             } else 
35:                 return logf(x)+ln2;   /* acosh(huge)=log(2x) */
36:         } else if (hx==0x3f800000) {
More results from e_acoshf.c
bsd_source/lib/libc/src_bsd/math/e_lgammaf_r.c - 8.1KB - 232 lines
154:                 *signgamp = -1;
155:                 return - logf(-x);
156:             } else return - logf(x);
More results from e_lgammaf_r.c
bsd_source/lib/libc/src_bsd/math/e_log10f.c - 1.5KB - 51 lines
48:         SET_FLOAT_WORD(x,hx);
49:         z  = y*log10_2lo + ivln10*logf(x);
50:         return  z+y*log10_2hi;
bsd_source/lib/libc/src_bsd/math/s_asinhf.c - 1.4KB - 45 lines
35:         if(ix>0x4d800000) {    /* |x| > 2**28 */
36:             w = logf(fabsf(x))+ln2;
37:         } else if (ix>0x40000000) {    /* 2**28 > |x| > 2.0 */
More results from s_asinhf.c