Searched refs:cf (Results 1 - 25 of 417) sorted by relevance

1234567891011>>

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dmissed-error1.C15 void cf (void);
19 pfv p2 = cf; // ERROR - mismatch XFAIL *-*-*
21 pcfv p4 = cf;
/openbsd-current/usr.bin/cvs/
H A Dupdate.c194 cvs_update_enterdir(struct cvs_file *cf) argument
199 cvs_log(LP_TRACE, "cvs_update_enterdir(%s)", cf->file_path);
201 cvs_file_classify(cf, NULL);
203 if (cf->file_status == DIR_CREATE && build_dirs == 1) {
204 cvs_parse_tagfile(cf->file_wd, &dirtag, NULL, NULL);
205 cvs_mkpath(cf->file_path, cvs_specified_tag != NULL ?
209 if ((cf->fd = open(cf->file_path, O_RDONLY)) == -1)
211 cf->file_path, strerror(errno));
214 cvs_server_clear_sticky(cf
238 cvs_update_leavedir(struct cvs_file *cf) argument
316 cvs_update_local(struct cvs_file *cf) argument
497 update_clear_conflict(struct cvs_file *cf) argument
532 update_has_conflict_markers(struct cvs_file *cf) argument
576 update_join_file(struct cvs_file *cf) argument
716 cvs_backup_file(struct cvs_file *cf) argument
[all...]
H A Dadd.c137 cvs_add_entry(struct cvs_file *cf) argument
142 if (cf->file_type == CVS_DIR) {
144 cvs_ent_line_str(cf->file_name, NULL, NULL, NULL, NULL, 1, 0,
147 entlist = cvs_ent_open(cf->file_wd);
152 add_entry(cf);
157 cvs_add_local(struct cvs_file *cf) argument
159 cvs_log(LP_TRACE, "cvs_add_local(%s)", cf->file_path);
162 cvs_file_classify(cf, cvs_directory_tag);
165 if (strcmp(cf->file_name, ".") == 0 ||
166 strcmp(cf
182 cvs_add_remote(struct cvs_file *cf) argument
230 cvs_add_tobranch(struct cvs_file *cf, char *tag) argument
300 add_directory(struct cvs_file *cf) argument
410 add_file(struct cvs_file *cf) argument
497 add_entry(struct cvs_file *cf) argument
[all...]
H A Dcommit.c233 struct cvs_filelist *cf; local
245 RB_FOREACH(cf, cvs_flisthead, &files_added) {
248 buf_puts(buf, cf->file_path);
257 RB_FOREACH(cf, cvs_flisthead, &files_modified) {
260 buf_puts(buf, cf->file_path);
269 RB_FOREACH(cf, cvs_flisthead, &files_removed) {
272 buf_puts(buf, cf->file_path);
289 cvs_commit_lock_dirs(struct cvs_file *cf) argument
293 cvs_get_repository_path(cf->file_wd, repo, sizeof(repo));
301 cvs_commit_check_files(struct cvs_file *cf) argument
399 cvs_commit_local(struct cvs_file *cf) argument
687 commit_diff(struct cvs_file *cf, RCSNUM *rev, int reverse) argument
728 commit_desc_set(struct cvs_file *cf) argument
[all...]
H A Dfile.c234 struct cvs_file *cf; local
239 cf = xcalloc(1, sizeof(*cf));
241 cf->file_name = xstrdup(f);
242 cf->file_wd = xstrdup(d);
243 cf->file_path = xstrdup(p);
244 cf->fd = fd;
245 cf->repo_fd = -1;
246 cf->file_type = type;
247 cf
266 struct cvs_file *cf; local
398 cvs_file_walkdir(struct cvs_file *cf, struct cvs_recursion *cr) argument
645 cvs_file_classify(struct cvs_file *cf, const char *tag) argument
980 cvs_file_free(struct cvs_file *cf) argument
[all...]
H A Dremove.c125 cvs_remove_force(struct cvs_file *cf) argument
127 if (cf->file_type != CVS_DIR) {
128 if (cf->file_flags & FILE_ON_DISK) {
129 if (unlink(cf->file_path) == -1)
131 (void)close(cf->fd);
132 cf->fd = -1;
138 cvs_remove_local(struct cvs_file *cf) argument
144 cvs_log(LP_TRACE, "cvs_remove_local(%s)", cf->file_path);
146 if (cf->file_type == CVS_DIR) {
148 cvs_log(LP_NOTICE, "Removing %s", cf
[all...]
H A Drelease.c95 cvs_release_local(struct cvs_file *cf) argument
103 if (cf->file_type == CVS_FILE)
106 cvs_log(LP_TRACE, "cvs_release_local(%s)", cf->file_path);
108 cvs_file_classify(cf, cvs_directory_tag);
111 cvs_history_add(CVS_HISTORY_RELEASE, cf, NULL);
118 if (cf->file_type == CVS_DIR) {
119 if (!strcmp(cf->file_name, "."))
123 cvs_chdir(cf->file_path, 0);
128 cf->file_path);
159 (dflag == 1) ? "(and delete) " : "", cf
182 release_check_files(struct cvs_file *cf) argument
[all...]
H A Dstatus.c120 cvs_status_local(struct cvs_file *cf) argument
130 cvs_log(LP_TRACE, "cvs_status_local(%s)", cf->file_path);
132 cvs_file_classify(cf, cvs_directory_tag);
134 if (cf->file_type == CVS_DIR) {
136 cvs_log(LP_NOTICE, "Examining %s", cf->file_path);
140 if (cf->file_status == FILE_UPTODATE &&
141 !(cf->file_flags & FILE_ON_DISK) &&
142 !(cf->file_flags & FILE_USER_SUPPLIED))
145 if (cf->file_rcs != NULL)
146 head = cf
[all...]
H A Dimport.c228 cvs_import_local(struct cvs_file *cf) argument
234 cvs_log(LP_TRACE, "cvs_import_local(%s)", cf->file_path);
236 cvs_file_classify(cf, cvs_directory_tag);
238 if (cf->file_type == CVS_DIR) {
239 if (!strcmp(cf->file_path, "."))
243 cvs_log(LP_NOTICE, "Importing %s", cf->file_path);
248 if (mkdir(cf->file_rpath, 0755) == -1 && errno != EEXIST)
249 fatal("cvs_import_local: %s: %s", cf->file_rpath,
257 current_cvsroot->cr_dir, cf->file_wd, CVS_PATH_ATTIC,
258 cf
304 import_new(struct cvs_file *cf) argument
390 import_update(struct cvs_file *cf) argument
457 import_tag(struct cvs_file *cf, RCSNUM *branch, RCSNUM *newrev) argument
470 import_get_rcsdiff(struct cvs_file *cf, RCSNUM *rev) argument
[all...]
H A Dtag.c238 cvs_tag_check_files(struct cvs_file *cf) argument
244 cvs_log(LP_TRACE, "cvs_tag_check_files(%s)", cf->file_path);
246 cvs_file_classify(cf, tag);
248 if (cf->file_type == CVS_DIR || cf->file_status == FILE_UNKNOWN)
252 if (cf->file_status != FILE_UPTODATE &&
253 cf->file_status != FILE_CHECKOUT &&
254 cf->file_status != FILE_PATCH) {
257 "%s is locally modified", cf->file_path);
262 switch (cf
326 cvs_tag_local(struct cvs_file *cf) argument
380 tag_del(struct cvs_file *cf) argument
392 tag_add(struct cvs_file *cf) argument
[all...]
H A Dremote.c247 cvs_remote_classify_file(struct cvs_file *cf) argument
252 entlist = cvs_ent_open(cf->file_wd);
253 cf->file_ent = cvs_ent_get(entlist, cf->file_name);
255 if (cf->file_ent != NULL && cf->file_ent->ce_status != CVS_ENT_REG) {
256 if (cf->file_ent->ce_status == CVS_ENT_ADDED) {
257 if (cf->fd != -1)
258 cf->file_status = FILE_ADDED;
260 cf
[all...]
/openbsd-current/gnu/usr.bin/perl/dist/ExtUtils-CBuilder/lib/ExtUtils/CBuilder/Platform/
H A DUnix.pm23 my $cf = $self->{config};
30 local $cf->{ld} = $cf->{ld};
31 if (ref $cf->{ld}) {
32 unshift @{$cf->{ld}}, 'env' if $cf->{ld}[0] =~ /^\s*\w+=/;
34 $cf->{ld} =~ s/^(\s*\w+=)/env $1/;
H A Ddarwin.pm16 my $cf = $self->{config};
20 local $cf->{ccflags} = $cf->{ccflags};
21 $cf->{ccflags} =~ s/-flat_namespace//;
24 $cf->{ccflags} .= ($cf->{ccflags} ? ' ' : '').'-Wno-error=implicit-function-declaration';
H A Daix.pm15 my $cf = $self->{config};
21 local $cf->{lddlflags} = $cf->{lddlflags};
22 for ($cf->{lddlflags}) {
/openbsd-current/usr.bin/tmux/
H A Dfile.c77 struct client_file *cf; local
79 cf = xcalloc(1, sizeof *cf);
80 cf->c = NULL;
81 cf->references = 1;
82 cf->stream = stream;
84 cf->buffer = evbuffer_new();
85 if (cf->buffer == NULL)
88 cf->cb = cb;
89 cf
103 struct client_file *cf; local
132 file_free(struct client_file *cf) argument
152 struct client_file *cf = arg; local
163 file_fire_done(struct client_file *cf) argument
170 file_fire_read(struct client_file *cf) argument
202 struct client_file find, *cf; local
229 struct client_file find, *cf; local
256 struct client_file find, *cf; local
289 struct client_file *cf; local
362 struct client_file *cf; local
436 file_cancel(struct client_file *cf) argument
454 struct client_file *cf = arg; local
463 file_push(struct client_file *cf) argument
502 struct client_file *cf; local
523 struct client_file *cf = arg; local
541 struct client_file *cf = arg; local
566 struct client_file find, *cf; local
626 struct client_file find, *cf; local
646 struct client_file find, *cf; local
670 struct client_file *cf = arg; local
689 struct client_file *cf = arg; local
727 struct client_file find, *cf; local
787 struct client_file find, *cf; local
805 struct client_file find, *cf; local
825 struct client_file find, *cf; local
851 struct client_file find, *cf; local
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/asan/
H A Dasan_activation.cpp33 void RegisterActivationFlags(FlagParser *parser, Flags *f, CommonFlags *cf) { argument
37 RegisterFlag(parser, #Name, "", &cf->Name);
42 RegisterIncludeFlags(parser, cf);
47 CommonFlags cf; local
49 RegisterActivationFlags(&parser, &f, &cf);
51 cf.SetDefaults();
53 allocator_options.CopyTo(&f, &cf);
54 cf.malloc_context_size = malloc_context_size;
56 cf.coverage = coverage;
57 cf
[all...]
/openbsd-current/usr.sbin/config/
H A Dmkswap.c65 struct config *cf; local
67 for (cf = allcf; cf != NULL; cf = cf->cf_next)
68 if (cf->cf_root != NULL && mkoneswap(cf))
87 mkoneswap(struct config *cf) argument
93 (void)snprintf(fname, sizeof fname, "swap%s.c", cf->cf_name);
103 nv = cf
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_flags.h50 inline void OverrideCommonFlags(const CommonFlags &cf) { argument
51 common_flags_dont_use.CopyFrom(cf);
58 CommonFlags *cf = &common_flags_dont_use);
59 void RegisterIncludeFlags(FlagParser *parser, CommonFlags *cf);
64 void InitializeCommonFlags(CommonFlags *cf = &common_flags_dont_use);
67 void InitializePlatformCommonFlags(CommonFlags *cf);
/openbsd-current/sys/kern/
H A Dsubr_autoconf.c132 mapply(struct matchinfo *m, struct cfdata *cf) argument
138 match = config_make_softc(m->parent, cf);
140 match = cf;
143 printf(">>> probing for %s", cf->cf_driver->cd_name);
144 if (cf->cf_fstate == FSTATE_STAR)
147 printf("%d\n", cf->cf_unit);
152 if (cf->cf_attach->ca_match == NULL) {
154 cf->cf_driver->cd_name);
156 pri = (*cf->cf_attach->ca_match)(m->parent, match, m->aux);
159 printf(">>> %s probe returned %d\n", cf
189 struct cfdata *cf; local
249 struct cfdata *cf; local
284 struct cfdata *cf; local
353 struct cfdata *cf; local
433 config_make_softc(struct device *parent, struct cfdata *cf) argument
515 struct cfdata *cf; local
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/tsan/rtl/
H A Dtsan_flags.cpp56 CommonFlags cf; local
57 cf.CopyFrom(*common_flags());
58 cf.external_symbolizer_path = GetEnv("TSAN_SYMBOLIZER_PATH");
59 cf.allow_addr2line = true;
62 cf.abort_on_error = false;
64 cf.detect_deadlocks = false;
66 cf.print_suppressions = false;
67 cf.stack_trace_format = " #%n %f %S %M";
68 cf.exitcode = 66;
69 cf
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A D20020227-1.c5 typedef __complex__ float cf; typedef
6 struct x { char c; cf f; } __attribute__ ((__packed__));
/openbsd-current/sys/dev/isa/
H A Disa.c86 struct cfdata *cf = match; local
89 if (strcmp(iba->iba_busname, cf->cf_driver->cd_name))
192 struct cfdata *cf = dev->dv_cfdata; local
201 ia.ia_iobase = cf->cf_iobase;
203 ia.ia_maddr = cf->cf_maddr;
204 ia.ia_msize = cf->cf_msize;
205 ia.ia_irq = cf->cf_irq == 2 ? 9 : cf->cf_irq;
207 ia.ia_drq = cf->cf_drq;
208 ia.ia_drq2 = cf
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/lsan/
H A Dlsan.cpp55 CommonFlags cf; local
56 cf.CopyFrom(*common_flags());
57 cf.external_symbolizer_path = GetEnv("LSAN_SYMBOLIZER_PATH");
58 cf.malloc_context_size = 30;
59 cf.intercept_tls_get_addr = true;
60 cf.detect_leaks = true;
61 cf.exitcode = 23;
62 OverrideCommonFlags(cf);
/openbsd-current/sys/arch/hppa/dev/
H A Dsti_pci_machdep.c34 u_int32_t cf; local
55 cf = pci_conf_read(paa->pa_pc, paa->pa_tag, bar);
57 _PCI_MAPREG_TYPEBITS(cf), &addr, NULL, NULL);
58 if (PCI_MAPREG_TYPE(cf) == PCI_MAPREG_TYPE_MEM &&
59 PCI_MAPREG_MEM_TYPE(cf) == PCI_MAPREG_MEM_TYPE_64BIT)
/openbsd-current/gnu/llvm/compiler-rt/lib/memprof/
H A Dmemprof_flags.cpp50 CommonFlags cf; local
51 cf.CopyFrom(*common_flags());
52 cf.external_symbolizer_path = GetEnv("MEMPROF_SYMBOLIZER_PATH");
53 cf.malloc_context_size = kDefaultMallocContextSize;
54 cf.intercept_tls_get_addr = true;
55 cf.exitcode = 1;
56 OverrideCommonFlags(cf);

Completed in 171 milliseconds

1234567891011>>