Home
last modified time | relevance | path

Searched refs:fac (Results 1 – 23 of 23) sorted by relevance

/freebsd/crypto/heimdal/lib/krb5/
H A Dlog.c121 krb5_log_facility **fac) in krb5_initlog() argument
136 *fac = f; in krb5_initlog()
142 krb5_log_facility *fac, in krb5_addlog_func() argument
149 struct facility *fp = log_realloc(fac); in krb5_addlog_func()
188 const char *sev, const char *fac) in open_syslog() argument
202 i = find_value(fac, syslogvals); in open_syslog()
254 open_file(krb5_context context, krb5_log_facility *fac, int min, int max, in open_file() argument
268 return krb5_addlog_func(context, fac, min, max, log_file, close_file, fd); in open_file()
367 krb5_log_facility **fac) in krb5_openlog() argument
372 ret = krb5_initlog(context, program, fac); in krb5_openlog()
[all …]
H A Dwarn.c329 krb5_set_warn_dest(krb5_context context, krb5_log_facility *fac) in krb5_set_warn_dest() argument
331 context->warn_dest = fac; in krb5_set_warn_dest()
H A Dcrypto-stubs.c85 krb5_log_facility *fac, in krb5_log() argument
/freebsd/sbin/ipf/libipf/
H A Dsave_syslog.c12 int fac; member
43 int fac = -1, pri = -1; in syslog_parse() local
50 fac = fac_findname(str); in syslog_parse()
51 if (fac == -1) { in syslog_parse()
68 ctx->fac = fac; in syslog_parse()
71 ctx->facpri = fac; in syslog_parse()
72 else if (fac == -1) in syslog_parse()
75 ctx->facpri = fac | pri; in syslog_parse()
96 if (sys->fac == -1) { in syslog_print()
99 printf("%s.", fac_toname(sys->fac)); in syslog_print()
[all …]
H A Dfacpri.c75 int i, j, fac; in fac_toname() local
77 fac = facpri & LOG_FACMASK; in fac_toname()
78 j = fac >> 3; in fac_toname()
80 if (facs[j].value == fac) in fac_toname()
84 if (fac == facs[i].value) in fac_toname()
/freebsd/crypto/heimdal/kdc/
H A Dhpropd.c82 krb5_log_facility *fac; in main() local
91 ret = krb5_openlog(context, "hpropd", &fac); in main()
94 krb5_set_warn_dest(context, fac); in main()
158 krb5_log(context, fac, 0, "Connection from %s", addr_name); in main()
278 krb5_log(context, fac, 0, "Received %d principals", nprincs); in main()
/freebsd/usr.bin/logger/
H A Dlogger.c397 int fac, lev; in pencode() local
402 fac = decode(save, facilitynames); in pencode()
403 if (fac < 0) in pencode()
408 fac = 0; in pencode()
414 return ((lev & LOG_PRIMASK) | (fac & LOG_FACMASK)); in pencode()
/freebsd/contrib/arm-optimized-routines/math/aarch64/advsimd/
H A Derfcf.c154 float32x4_t fac = vreinterpretq_f32_u32 ( in V_NAME_F1() local
159 return special_case (xm, vfmaq_f32 (off, fac, y), cmp); in V_NAME_F1()
162 return vfmaq_f32 (off, fac, y); in V_NAME_F1()
H A Derfc.c187 float64x2_t fac = vreinterpretq_f64_u64 ( in V_NAME_D1() local
192 return special_case (xm, vfmaq_f64 (off, fac, y), cmp); in V_NAME_D1()
195 return vfmaq_f64 (off, fac, y); in V_NAME_D1()
/freebsd/sys/sys/
H A Dsyslog.h59 #define LOG_MAKEPRI(fac, pri) ((fac) | (pri)) argument
/freebsd/contrib/arm-optimized-routines/math/aarch64/experimental/
H A Derfcf_1u7.c79 float fac = asfloat (asuint (0x1p-47f) | sign); in erfcf() local
80 y = fmaf (y, fac, off); in erfcf()
H A Derfc_1u8.c127 double fac = asdouble (asuint64 (0x1p-128) | sign); in erfc() local
128 y = fma (y, fac, off); in erfc()
/freebsd/crypto/heimdal/appl/kf/
H A Dkfd.c296 krb5_log_facility *fac; in main() local
301 ret = krb5_openlog(context, "kfd", &fac); in main()
303 ret = krb5_set_warn_dest(context, fac); in main()
/freebsd/contrib/arm-optimized-routines/math/aarch64/sve/
H A Derfcf.c100 svfloat32_t fac = svreinterpret_f32 (svorr_x (pg, sign, TableScale)); in SV_NAME_F1() local
102 return svmla_x (pg, off, fac, y); in SV_NAME_F1()
H A Derfc.c153 svfloat64_t fac = svreinterpret_f64 (svorr_x (pg, sign, dat->table_scale)); in SV_NAME_D1() local
155 return svmla_x (pg, off, fac, y); in SV_NAME_D1()
/freebsd/usr.sbin/syslogd/
H A Dsyslogd.c1540 int fac, prilev; in logmsg() local
1556 fac = LOG_NFACILITIES; in logmsg()
1558 fac = LOG_FAC(pri); in logmsg()
1561 if (fac > LOG_NFACILITIES) in logmsg()
1606 if (!(((f->f_pcmp[fac] & PRI_EQ) && (f->f_pmask[fac] == prilev)) in logmsg()
1607 ||((f->f_pcmp[fac] & PRI_LT) && (f->f_pmask[fac] < prilev)) in logmsg()
1608 ||((f->f_pcmp[fac] & PRI_GT) && (f->f_pmask[fac] > prilev)) in logmsg()
1610 || f->f_pmask[fac] == INTERNAL_NOPRI) in logmsg()
/freebsd/sys/contrib/device-tree/src/arm/ti/omap/
H A Domap3430es1-clocks.dtsi137 fac_ick: clock-fac-ick@8 {
/freebsd/contrib/ntp/sntp/libevent/
H A DChangeLog-2.0246 o Revise the event/evbuffer/bufferevent doxygen for clarity and accuracy (2888fac)
H A DChangeLog1675 o Revise the event/evbuffer/bufferevent doxygen for clarity and accuracy (2888fac)
/freebsd/contrib/libevent/
H A DChangeLog-2.0246 o Revise the event/evbuffer/bufferevent doxygen for clarity and accuracy (2888fac)
H A DChangeLog1675 o Revise the event/evbuffer/bufferevent doxygen for clarity and accuracy (2888fac)
/freebsd/share/misc/
H A Dpci_vendors34635 2fac Xeon E7 v3/Xeon E5 v3/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder
36255 6fac Xeon E7 v4/Xeon E5 v4/Xeon E3 v4/Xeon D Memory Controller 0 - Channel Target Address Decoder
H A Dusb_vendors21191 1fac Franklin Wireless