Home
last modified time | relevance | path

Searched refs:cf (Results 1 – 25 of 540) sorted by relevance

12345678910>>...22

/freebsd/crypto/heimdal/
H A DMakefile.am19 ACLOCAL_AMFLAGS = -I cf
40 cf/make-proto.pl \
41 cf/install-catman.sh \
42 cf/ChangeLog \
43 cf/c-function.m4 \
44 cf/ChangeLog \
45 cf/have-pragma-weak.m4 \
46 cf/have-types.m4 \
47 cf/krb-func-getcwd-broken.m4 \
48 cf/krb-prog-ranlib.m4 \
[all …]
H A DMakefile.in44 $(top_srcdir)/cf/Makefile.am.common $(top_srcdir)/configure \
50 am__aclocal_m4_deps = $(top_srcdir)/cf/aix.m4 \
51 $(top_srcdir)/cf/auth-modules.m4 \
52 $(top_srcdir)/cf/broken-getaddrinfo.m4 \
53 $(top_srcdir)/cf/broken-glob.m4 \
54 $(top_srcdir)/cf/broken-realloc.m4 \
55 $(top_srcdir)/cf/broken-snprintf.m4 $(top_srcdir)/cf/broken.m4 \
56 $(top_srcdir)/cf/broken2.m4 $(top_srcdir)/cf/c-attribute.m4 \
57 $(top_srcdir)/cf/capabilities.m4 \
58 $(top_srcdir)/cf/check-compile-et.m4 \
[all …]
/freebsd/contrib/sendmail/cf/cf/
H A DMakefile35 .SUFFIXES: .mc .cf
37 .mc.cf:
39 $(M4) ${CFDIR}/m4/cf.m4 $*.mc > $@ || ( $(RM) $@ && exit 1 )
44 GENERIC=generic-bsd4.4.cf generic-hpux9.cf generic-hpux10.cf \
45 generic-linux.cf generic-mpeix.cf generic-nextstep3.3.cf \
46 generic-osf1.cf generic-solaris.cf \
47 generic-sunos4.1.cf generic-ultrix4.cf
48 BERKELEY=cs-hpux9.cf cs-hpux10.cf cs-osf1.cf cs-solaris.cf \
49 cs-sunos4.1.cf cs-ultrix4.cf \
50 s2k-osf1.cf s2k-ultrix4.cf \
[all …]
/freebsd/contrib/one-true-awk/testdir/
H A Dchem.awk102 if ($cf ~ /(\+|-)?[0-9]+|up|down|right|left|ne|se|nw|sw/)
104 else if ($cf ~ /^leng/) {
107 } else if ($cf == "to") {
111 } else if ($cf == "from") {
114 } else if ($cf ~ /^#/) {
138 n = $cf
213 for (cf = 2; cf <= NF; ) {
214 if ($cf == "pointing")
216 else if ($cf == "double" || $cf == "triple")
218 else if ($cf ~ /arom/) {
[all …]
/freebsd/crypto/heimdal/include/
H A DMakefile.in47 $(top_srcdir)/cf/Makefile.am.common
51 am__aclocal_m4_deps = $(top_srcdir)/cf/aix.m4 \
52 $(top_srcdir)/cf/auth-modules.m4 \
53 $(top_srcdir)/cf/broken-getaddrinfo.m4 \
54 $(top_srcdir)/cf/broken-glob.m4 \
55 $(top_srcdir)/cf/broken-realloc.m4 \
56 $(top_srcdir)/cf/broken-snprintf.m4 $(top_srcdir)/cf/broken.m4 \
57 $(top_srcdir)/cf/broken2.m4 $(top_srcdir)/cf/c-attribute.m4 \
58 $(top_srcdir)/cf/capabilities.m4 \
59 $(top_srcdir)/cf/check-compile-et.m4 \
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/asan/
H A Dasan_activation.cpp33 void RegisterActivationFlags(FlagParser *parser, Flags *f, CommonFlags *cf) { in RegisterActivationFlags()
37 RegisterFlag(parser, #Name, "", &cf->Name); in RegisterActivationFlags()
42 RegisterIncludeFlags(parser, cf); in RegisterActivationFlags()
47 CommonFlags cf; in OverrideFromActivationFlags() local
49 RegisterActivationFlags(&parser, &f, &cf); in OverrideFromActivationFlags()
51 cf.SetDefaults(); in OverrideFromActivationFlags()
53 allocator_options.CopyTo(&f, &cf); in OverrideFromActivationFlags()
54 cf.malloc_context_size = malloc_context_size; in OverrideFromActivationFlags()
56 cf.coverage = coverage; in OverrideFromActivationFlags()
57 cf.coverage_dir = coverage_dir; in OverrideFromActivationFlags()
[all …]
/freebsd/etc/sendmail/
H A DMakefile8 SENDMAIL_CF_DIR?=${SENDMAIL_DIR}/cf
13 .SUFFIXES: .mc .cf
15 .mc.cf: ${M4FILES}
19 ${SENDMAIL_CF_DIR}/m4/cf.m4 ${.IMPSRC} > ${.TARGET}
22 DEST_CF= ${DESTDIR}/etc/mail/sendmail.cf
23 DEST_SUBMIT_CF= ${DESTDIR}/etc/mail/submit.cf
25 ALL= freebsd.cf freebsd.submit.cf
26 CLEANFILES= freebsd.cf freebsd.submit.cf
35 INSTALL_CF= ${SENDMAIL_MC:T:R}.cf
37 CLEANFILES+= ${SENDMAIL_MC:T:R}.cf
[all …]
/freebsd/etc/mail/
H A DMakefile80 INSTALL_CF= ${SENDMAIL_MC:R}.cf
83 INSTALL_SUBMIT_CF= ${SENDMAIL_SUBMIT_MC:R}.cf
92 .if exists(/usr/share/sendmail/cf)
93 SENDMAIL_CF_DIR?= /usr/share/sendmail/cf
94 .elif exists(/usr/src/contrib/sendmail/cf)
95 SENDMAIL_CF_DIR?= /usr/src/contrib/sendmail/cf
162 .SUFFIXES: .cf .mc
164 .mc.cf: ${M4FILES}
166 ${SENDMAIL_CF_DIR}/m4/cf.m4 ${@:R}.mc > ${.TARGET}
182 all: cf maps aliases
[all …]
/freebsd/lib/libcrypt/
H A Dcrypt.c88 const struct crypt_format *cf; in crypt_set_format() local
90 for (cf = crypt_formats; cf->name != NULL; ++cf) { in crypt_set_format()
91 if (strcasecmp(cf->name, format) == 0) { in crypt_set_format()
92 crypt_format = cf; in crypt_set_format()
107 const struct crypt_format *cf; in crypt_r() local
113 for (cf = crypt_formats; cf->name != NULL; ++cf) in crypt_r()
114 if (cf->magic != NULL && strstr(salt, cf->magic) == salt) { in crypt_r()
115 func = cf->func; in crypt_r()
/freebsd/crypto/heimdal/etc/
H A DMakefile.in44 $(top_srcdir)/cf/Makefile.am.common
47 am__aclocal_m4_deps = $(top_srcdir)/cf/aix.m4 \
48 $(top_srcdir)/cf/auth-modules.m4 \
49 $(top_srcdir)/cf/broken-getaddrinfo.m4 \
50 $(top_srcdir)/cf/broken-glob.m4 \
51 $(top_srcdir)/cf/broken-realloc.m4 \
52 $(top_srcdir)/cf/broken-snprintf.m4 $(top_srcdir)/cf/broken.m4 \
53 $(top_srcdir)/cf/broken2.m4 $(top_srcdir)/cf/c-attribute.m4 \
54 $(top_srcdir)/cf/capabilities.m4 \
55 $(top_srcdir)/cf/check-compile-et.m4 \
[all …]
/freebsd/crypto/heimdal/include/gssapi/
H A DMakefile.in44 $(top_srcdir)/cf/Makefile.am.common
47 am__aclocal_m4_deps = $(top_srcdir)/cf/aix.m4 \
48 $(top_srcdir)/cf/auth-modules.m4 \
49 $(top_srcdir)/cf/broken-getaddrinfo.m4 \
50 $(top_srcdir)/cf/broken-glob.m4 \
51 $(top_srcdir)/cf/broken-realloc.m4 \
52 $(top_srcdir)/cf/broken-snprintf.m4 $(top_srcdir)/cf/broken.m4 \
53 $(top_srcdir)/cf/broken2.m4 $(top_srcdir)/cf/c-attribute.m4 \
54 $(top_srcdir)/cf/capabilities.m4 \
55 $(top_srcdir)/cf/check-compile-et.m4 \
[all …]
/freebsd/crypto/heimdal/include/hcrypto/
H A DMakefile.in44 $(top_srcdir)/cf/Makefile.am.common
47 am__aclocal_m4_deps = $(top_srcdir)/cf/aix.m4 \
48 $(top_srcdir)/cf/auth-modules.m4 \
49 $(top_srcdir)/cf/broken-getaddrinfo.m4 \
50 $(top_srcdir)/cf/broken-glob.m4 \
51 $(top_srcdir)/cf/broken-realloc.m4 \
52 $(top_srcdir)/cf/broken-snprintf.m4 $(top_srcdir)/cf/broken.m4 \
53 $(top_srcdir)/cf/broken2.m4 $(top_srcdir)/cf/c-attribute.m4 \
54 $(top_srcdir)/cf/capabilities.m4 \
55 $(top_srcdir)/cf/check-compile-et.m4 \
[all …]
/freebsd/crypto/heimdal/include/kadm5/
H A DMakefile.in44 $(top_srcdir)/cf/Makefile.am.common
47 am__aclocal_m4_deps = $(top_srcdir)/cf/aix.m4 \
48 $(top_srcdir)/cf/auth-modules.m4 \
49 $(top_srcdir)/cf/broken-getaddrinfo.m4 \
50 $(top_srcdir)/cf/broken-glob.m4 \
51 $(top_srcdir)/cf/broken-realloc.m4 \
52 $(top_srcdir)/cf/broken-snprintf.m4 $(top_srcdir)/cf/broken.m4 \
53 $(top_srcdir)/cf/broken2.m4 $(top_srcdir)/cf/c-attribute.m4 \
54 $(top_srcdir)/cf/capabilities.m4 \
55 $(top_srcdir)/cf/check-compile-et.m4 \
[all …]
/freebsd/usr.sbin/bhyveload/
H A Dbhyveload.c170 struct cb_file *cf; in cb_open() local
174 cf = NULL; in cb_open()
202 cf = malloc(sizeof(struct cb_file)); in cb_open()
203 if (cf == NULL) { in cb_open()
208 cf->cf_stat = sb; in cb_open()
209 cf->cf_size = cf->cf_stat.st_size; in cb_open()
211 if (S_ISDIR(cf->cf_stat.st_mode)) { in cb_open()
212 cf->cf_isdir = 1; in cb_open()
213 cf->cf_u.dir = fdopendir(fd); in cb_open()
214 if (cf->cf_u.dir == NULL) { in cb_open()
[all …]
/freebsd/crypto/heimdal/appl/ftp/common/
H A DMakefile.in45 $(top_srcdir)/cf/Makefile.am.common
48 am__aclocal_m4_deps = $(top_srcdir)/cf/aix.m4 \
49 $(top_srcdir)/cf/auth-modules.m4 \
50 $(top_srcdir)/cf/broken-getaddrinfo.m4 \
51 $(top_srcdir)/cf/broken-glob.m4 \
52 $(top_srcdir)/cf/broken-realloc.m4 \
53 $(top_srcdir)/cf/broken-snprintf.m4 $(top_srcdir)/cf/broken.m4 \
54 $(top_srcdir)/cf/broken2.m4 $(top_srcdir)/cf/c-attribute.m4 \
55 $(top_srcdir)/cf/capabilities.m4 \
56 $(top_srcdir)/cf/check-compile-et.m4 \
[all …]
/freebsd/crypto/heimdal/lib/vers/
H A DMakefile.in45 $(top_srcdir)/cf/Makefile.am.common ChangeLog
48 am__aclocal_m4_deps = $(top_srcdir)/cf/aix.m4 \
49 $(top_srcdir)/cf/auth-modules.m4 \
50 $(top_srcdir)/cf/broken-getaddrinfo.m4 \
51 $(top_srcdir)/cf/broken-glob.m4 \
52 $(top_srcdir)/cf/broken-realloc.m4 \
53 $(top_srcdir)/cf/broken-snprintf.m4 $(top_srcdir)/cf/broken.m4 \
54 $(top_srcdir)/cf/broken2.m4 $(top_srcdir)/cf/c-attribute.m4 \
55 $(top_srcdir)/cf/capabilities.m4 \
56 $(top_srcdir)/cf/check-compile-et.m4 \
[all …]
/freebsd/crypto/heimdal/tools/
H A DMakefile.in46 $(top_srcdir)/cf/Makefile.am.common
49 am__aclocal_m4_deps = $(top_srcdir)/cf/aix.m4 \
50 $(top_srcdir)/cf/auth-modules.m4 \
51 $(top_srcdir)/cf/broken-getaddrinfo.m4 \
52 $(top_srcdir)/cf/broken-glob.m4 \
53 $(top_srcdir)/cf/broken-realloc.m4 \
54 $(top_srcdir)/cf/broken-snprintf.m4 $(top_srcdir)/cf/broken.m4 \
55 $(top_srcdir)/cf/broken2.m4 $(top_srcdir)/cf/c-attribute.m4 \
56 $(top_srcdir)/cf/capabilities.m4 \
57 $(top_srcdir)/cf/check-compile-et.m4 \
[all …]
/freebsd/sys/powerpc/powerpc/
H A Dvm_machdep.c111 struct callframe *cf; in cpu_fork() local
148 cf = (struct callframe *)tf - 1; in cpu_fork()
149 memset(cf, 0, sizeof(struct callframe)); in cpu_fork()
151 cf->cf_toc = ((register_t *)fork_return)[1]; in cpu_fork()
153 cf->cf_func = (register_t)fork_return; in cpu_fork()
154 cf->cf_arg0 = (register_t)td2; in cpu_fork()
155 cf->cf_arg1 = (register_t)tf; in cpu_fork()
157 pcb->pcb_sp = (register_t)cf; in cpu_fork()
188 struct callframe *cf; in cpu_fork_kthread_handler() local
193 cf in cpu_fork_kthread_handler()
[all...]
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_flags.cpp58 CommonFlags cf; in InitializeFlags() local
59 cf.CopyFrom(*common_flags()); in InitializeFlags()
60 cf.external_symbolizer_path = GetEnv("TSAN_SYMBOLIZER_PATH"); in InitializeFlags()
61 cf.allow_addr2line = true; in InitializeFlags()
64 cf.abort_on_error = false; in InitializeFlags()
66 cf.detect_deadlocks = false; in InitializeFlags()
68 cf.print_suppressions = false; in InitializeFlags()
69 cf.stack_trace_format = " #%n %f %S %M"; in InitializeFlags()
70 cf.exitcode = 66; in InitializeFlags()
71 cf.intercept_tls_get_addr = true; in InitializeFlags()
[all …]
/freebsd/crypto/heimdal/appl/
H A DMakefile.in44 $(top_srcdir)/cf/Makefile.am.common
47 am__aclocal_m4_deps = $(top_srcdir)/cf/aix.m4 \
48 $(top_srcdir)/cf/auth-modules.m4 \
49 $(top_srcdir)/cf/broken-getaddrinfo.m4 \
50 $(top_srcdir)/cf/broken-glob.m4 \
51 $(top_srcdir)/cf/broken-realloc.m4 \
52 $(top_srcdir)/cf/broken-snprintf.m4 $(top_srcdir)/cf/broken.m4 \
53 $(top_srcdir)/cf/broken2.m4 $(top_srcdir)/cf/c-attribute.m4 \
54 $(top_srcdir)/cf/capabilities.m4 \
55 $(top_srcdir)/cf/check-compile-et.m4 \
[all …]
/freebsd/crypto/heimdal/appl/ftp/
H A DMakefile.in44 $(top_srcdir)/cf/Makefile.am.common ChangeLog
47 am__aclocal_m4_deps = $(top_srcdir)/cf/aix.m4 \
48 $(top_srcdir)/cf/auth-modules.m4 \
49 $(top_srcdir)/cf/broken-getaddrinfo.m4 \
50 $(top_srcdir)/cf/broken-glob.m4 \
51 $(top_srcdir)/cf/broken-realloc.m4 \
52 $(top_srcdir)/cf/broken-snprintf.m4 $(top_srcdir)/cf/broken.m4 \
53 $(top_srcdir)/cf/broken2.m4 $(top_srcdir)/cf/c-attribute.m4 \
54 $(top_srcdir)/cf/capabilities.m4 \
55 $(top_srcdir)/cf/check-compile-et.m4 \
[all …]
/freebsd/crypto/heimdal/appl/gssmask/
H A DMakefile.in45 $(top_srcdir)/cf/Makefile.am.common
49 am__aclocal_m4_deps = $(top_srcdir)/cf/aix.m4 \
50 $(top_srcdir)/cf/auth-modules.m4 \
51 $(top_srcdir)/cf/broken-getaddrinfo.m4 \
52 $(top_srcdir)/cf/broken-glob.m4 \
53 $(top_srcdir)/cf/broken-realloc.m4 \
54 $(top_srcdir)/cf/broken-snprintf.m4 $(top_srcdir)/cf/broken.m4 \
55 $(top_srcdir)/cf/broken2.m4 $(top_srcdir)/cf/c-attribute.m4 \
56 $(top_srcdir)/cf/capabilities.m4 \
57 $(top_srcdir)/cf/check-compile-et.m4 \
[all …]
/freebsd/crypto/heimdal/appl/rcp/
H A DMakefile.in45 $(top_srcdir)/cf/Makefile.am.common ChangeLog
49 am__aclocal_m4_deps = $(top_srcdir)/cf/aix.m4 \
50 $(top_srcdir)/cf/auth-modules.m4 \
51 $(top_srcdir)/cf/broken-getaddrinfo.m4 \
52 $(top_srcdir)/cf/broken-glob.m4 \
53 $(top_srcdir)/cf/broken-realloc.m4 \
54 $(top_srcdir)/cf/broken-snprintf.m4 $(top_srcdir)/cf/broken.m4 \
55 $(top_srcdir)/cf/broken2.m4 $(top_srcdir)/cf/c-attribute.m4 \
56 $(top_srcdir)/cf/capabilities.m4 \
57 $(top_srcdir)/cf/check-compile-et.m4 \
[all …]
/freebsd/crypto/heimdal/appl/su/
H A DMakefile.in45 $(top_srcdir)/cf/Makefile.am.common ChangeLog
49 am__aclocal_m4_deps = $(top_srcdir)/cf/aix.m4 \
50 $(top_srcdir)/cf/auth-modules.m4 \
51 $(top_srcdir)/cf/broken-getaddrinfo.m4 \
52 $(top_srcdir)/cf/broken-glob.m4 \
53 $(top_srcdir)/cf/broken-realloc.m4 \
54 $(top_srcdir)/cf/broken-snprintf.m4 $(top_srcdir)/cf/broken.m4 \
55 $(top_srcdir)/cf/broken2.m4 $(top_srcdir)/cf/c-attribute.m4 \
56 $(top_srcdir)/cf/capabilities.m4 \
57 $(top_srcdir)/cf/check-compile-et.m4 \
[all …]
/freebsd/crypto/heimdal/appl/telnet/
H A DMakefile.in44 $(top_srcdir)/cf/Makefile.am.common ChangeLog
47 am__aclocal_m4_deps = $(top_srcdir)/cf/aix.m4 \
48 $(top_srcdir)/cf/auth-modules.m4 \
49 $(top_srcdir)/cf/broken-getaddrinfo.m4 \
50 $(top_srcdir)/cf/broken-glob.m4 \
51 $(top_srcdir)/cf/broken-realloc.m4 \
52 $(top_srcdir)/cf/broken-snprintf.m4 $(top_srcdir)/cf/broken.m4 \
53 $(top_srcdir)/cf/broken2.m4 $(top_srcdir)/cf/c-attribute.m4 \
54 $(top_srcdir)/cf/capabilities.m4 \
55 $(top_srcdir)/cf/check-compile-et.m4 \
[all …]

12345678910>>...22