/freebsd/crypto/heimdal/lib/krb5/ |
H A D | log.c | 121 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 D | warn.c | 329 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 D | crypto-stubs.c | 85 krb5_log_facility *fac, in krb5_log() argument
|
/freebsd/sbin/ipf/libipf/ |
H A D | save_syslog.c | 12 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 D | facpri.c | 75 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 D | hpropd.c | 82 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 D | logger.c | 397 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 D | erfcf.c | 154 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 D | erfc.c | 187 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 D | syslog.h | 59 #define LOG_MAKEPRI(fac, pri) ((fac) | (pri)) argument
|
/freebsd/contrib/arm-optimized-routines/math/aarch64/experimental/ |
H A D | erfcf_1u7.c | 79 float fac = asfloat (asuint (0x1p-47f) | sign); in erfcf() local 80 y = fmaf (y, fac, off); in erfcf()
|
H A D | erfc_1u8.c | 127 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 D | kfd.c | 296 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 D | erfcf.c | 100 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 D | erfc.c | 153 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 D | syslogd.c | 1540 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 D | omap3430es1-clocks.dtsi | 137 fac_ick: clock-fac-ick@8 {
|
/freebsd/contrib/ntp/sntp/libevent/ |
H A D | ChangeLog-2.0 | 246 o Revise the event/evbuffer/bufferevent doxygen for clarity and accuracy (2888fac)
|
H A D | ChangeLog | 1675 o Revise the event/evbuffer/bufferevent doxygen for clarity and accuracy (2888fac)
|
/freebsd/contrib/libevent/ |
H A D | ChangeLog-2.0 | 246 o Revise the event/evbuffer/bufferevent doxygen for clarity and accuracy (2888fac)
|
H A D | ChangeLog | 1675 o Revise the event/evbuffer/bufferevent doxygen for clarity and accuracy (2888fac)
|
/freebsd/share/misc/ |
H A D | pci_vendors | 34635 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 D | usb_vendors | 21191 1fac Franklin Wireless
|