Symbol: logf
crypto/heimdal/kcm/log.c
38
static krb5_log_facility *logf;
crypto/heimdal/kcm/log.c
44
krb5_initlog(kcm_context, "kcm", &logf);
crypto/heimdal/kcm/log.c
50
krb5_addlog_dest(kcm_context, logf, *p);
crypto/heimdal/kcm/log.c
53
krb5_addlog_dest(kcm_context, logf, DEFAULT_LOG_DEST);
crypto/heimdal/kcm/log.c
54
krb5_set_warn_dest(kcm_context, logf);
crypto/heimdal/kcm/log.c
61
krb5_vlog_msg(kcm_context, logf, &msg, level, fmt, ap);
crypto/heimdal/kdc/default_config.c
67
c->logf = NULL;
crypto/heimdal/kdc/kdc.h
84
krb5_log_facility *logf;
crypto/heimdal/kdc/log.c
44
krb5_initlog(context, "kdc", &config->logf);
crypto/heimdal/kdc/log.c
50
krb5_addlog_dest(context, config->logf, *p);
crypto/heimdal/kdc/log.c
57
krb5_addlog_dest(context, config->logf, ss);
crypto/heimdal/kdc/log.c
60
krb5_set_warn_dest(context, config->logf);
crypto/heimdal/kdc/log.c
69
krb5_vlog_msg(context, config->logf, &msg, level, fmt, ap);
lib/msun/src/catrigf.c
112
*rx = logf(A + sqrtf(A * A - 1));
lib/msun/src/catrigf.c
293
return (CMPLXF(logf(hypotf(x / m_e, y / m_e)) + 1,
lib/msun/src/catrigf.c
297
return (CMPLXF(logf(hypotf(x, y)), atan2f(y, x)));
lib/msun/src/catrigf.c
299
return (CMPLXF(logf(ax * ax + ay * ay) / 2, atan2f(y, x)));
lib/msun/src/catrigf.c
372
rx = (m_ln2 - logf(ay)) / 2;
lib/msun/src/e_acoshf.c
35
return logf(x)+ln2; /* acosh(huge)=log(2x) */
lib/msun/src/e_acoshf.c
40
return logf((float)2.0*x-one/(x+sqrtf(t-one)));
lib/msun/src/e_j0f.c
147
return(u00 + tpi*logf(x));
lib/msun/src/e_j0f.c
152
return(u/v + tpi*(j0f(x)*logf(x)));
lib/msun/src/e_j1f.c
145
return(x*(u/v) + tpi*(j1f(x)*logf(x)-one/x));
lib/msun/src/e_jnf.c
134
tmp = tmp*logf(fabsf(v*tmp));
lib/msun/src/e_lgammaf_r.c
138
return -logf(fabsf(x));
lib/msun/src/e_lgammaf_r.c
148
nadj = logf(pi/fabsf(t*x));
lib/msun/src/e_lgammaf_r.c
158
r = -logf(x);
lib/msun/src/e_lgammaf_r.c
198
r += logf(z); break;
lib/msun/src/e_lgammaf_r.c
202
t = logf(x);
lib/msun/src/e_lgammaf_r.c
209
r = x*(logf(x)-one);
lib/msun/src/math.h
368
float logf(float);
lib/msun/src/s_asinhf.c
36
w = logf(fabsf(x))+ln2;
lib/msun/src/s_asinhf.c
39
w = logf((float)2.0*t+one/(sqrtf(x*x+one)+t));
lib/msun/src/s_clogf.c
138
return (CMPLXF(logf(ay2l + ax2l + sl + sh) / 2, v));
lib/msun/src/s_clogf.c
69
return (CMPLXF(logf(hypotf(x, y)), v));
lib/msun/src/s_clogf.c
80
return (CMPLXF(logf(ax), v));
lib/msun/src/s_clogf.c
84
return (CMPLXF(logf(hypotf(x * 0x1p-126F, y * 0x1p-126F)) +
lib/msun/src/s_clogf.c
87
return (CMPLXF(logf(hypotf(x, y)), v));
lib/msun/src/s_clogf.c
91
return (CMPLXF(logf(hypotf(x * 0x1p127F, y * 0x1p127F)) +
lib/msun/src/s_clogf.c
96
return (CMPLXF(logf(hypotf(x, y)), v));
lib/msun/src/s_cpowf.c
70
theta = theta + y * logf (absa);
lib/msun/tests/logarithm_test.c
161
test(logf, 1.0, 0.0, ALL_STD_EXCEPT, 0);
lib/msun/tests/logarithm_test.c
233
test_tol(logf, tests[i].x, tests[i].logex, FLT_ULP());
lib/msun/tests/logarithm_test.c
75
test(logf, x, result, exceptmask, excepts); \