Searched refs:deps (Results 1 - 25 of 68) sorted by relevance

123

/freebsd-10.0-release/contrib/gcclibs/libcpp/include/
H A Dmkdeps.h29 struct deps;
31 /* Create a deps buffer. */
32 extern struct deps *deps_init (void);
34 /* Destroy a deps buffer. */
35 extern void deps_free (struct deps *);
42 extern void deps_add_vpath (struct deps *, const char *);
44 /* Add a target (appears on left side of the colon) to the deps list. Takes
46 extern void deps_add_target (struct deps *, const char *, int);
50 extern void deps_add_default_target (struct deps *, const char *);
53 deps lis
[all...]
H A Dcpplib.h423 } deps; member in struct:cpp_options
630 /* Call these to get pointers to the options, callback, and deps
638 extern struct deps *cpp_get_deps (cpp_reader *);
/freebsd-10.0-release/crypto/openssl/util/
H A Dclean-depend.pl16 my ($dummy, $file,$deps)=/^((.*):)? (.*)$/;
19 next if !defined $deps;
22 my @deps=split ' ',$deps;
23 @deps=grep(!/^\//,@deps);
24 @deps=grep(!/^\\$/,@deps);
25 @deps=grep(!/^$origfile$/,@deps);
[all...]
/freebsd-10.0-release/contrib/gcc/
H A Dgenmddeps.c33 static struct filedep *deps, **last = &deps; variable in typeref:struct:filedep
59 for (d = deps; d ; d = d->next)
65 for (d = deps; d ; d = d->next)
H A Dsched-deps.c98 static void flush_pending_lists (struct deps *, rtx, int, int);
99 static void sched_analyze_1 (struct deps *, rtx, rtx);
100 static void sched_analyze_2 (struct deps *, rtx, rtx);
101 static void sched_analyze_insn (struct deps *, rtx, rtx);
680 add_insn_mem_dependence (struct deps *deps, rtx *insn_list, rtx *mem_list,
696 deps->pending_lists_length++;
704 flush_pending_lists (struct deps *deps, rtx insn, int for_read,
709 add_dependence_list_and_free (insn, &deps
673 add_insn_mem_dependence(struct deps *deps, rtx *insn_list, rtx *mem_list, rtx insn, rtx mem) argument
697 flush_pending_lists(struct deps *deps, rtx insn, int for_read, int for_write) argument
723 sched_analyze_reg(struct deps *deps, int regno, enum machine_mode mode, enum rtx_code ref, rtx insn) argument
795 sched_analyze_1(struct deps *deps, rtx x, rtx insn) argument
928 sched_analyze_2(struct deps *deps, rtx x, rtx insn) argument
1118 sched_analyze_insn(struct deps *deps, rtx x, rtx insn) argument
1461 sched_analyze(struct deps *deps, rtx head, rtx tail) argument
1709 init_deps(struct deps *deps) argument
1734 free_deps(struct deps *deps) argument
[all...]
H A Dsched-int.h46 struct deps struct
386 functions in sched-deps.c .
394 See also: check_dep_status () in sched-deps.c . */
485 /* This represents the results of calling sched-deps.c functions,
609 /* Functions in sched-deps.c. */
612 extern void sched_analyze (struct deps *, rtx, rtx);
613 extern void init_deps (struct deps *);
614 extern void free_deps (struct deps *);
H A Dc-opts.c343 cpp_opts->deps.style = (code == OPT_M ? DEPS_SYSTEM: DEPS_USER);
350 cpp_opts->deps.style = (code == OPT_MD ? DEPS_SYSTEM: DEPS_USER);
361 cpp_opts->deps.missing_files = true;
366 cpp_opts->deps.phony_targets = true;
988 if (cpp_opts->deps.style == DEPS_NONE)
1210 if (cpp_opts->deps.style != DEPS_NONE)
1238 DEPS_TARGET", where OUTPUT_FILE is the file to write deps info to
1239 and DEPS_TARGET is the target to mention in the deps. They also
1250 cpp_opts->deps.style = DEPS_USER;
1256 cpp_opts->deps
1286 struct deps *deps; local
[all...]
/freebsd-10.0-release/tools/
H A Dmake_libdeps.sh71 deps=$(
75 if [ "${deps}" ]; then
77 echo ${deps} |
/freebsd-10.0-release/contrib/gcclibs/libcpp/
H A Dmkdeps.c29 struct deps struct
116 apply_vpath (struct deps *d, const char *t)
157 struct deps *
160 return XCNEW (struct deps);
164 deps_free (struct deps *d)
196 deps_add_target (struct deps *d, const char *t, int quote)
217 deps_add_default_target (struct deps *d, const char *tgt)
247 deps_add_dep (struct deps *d, const char *t)
260 deps_add_vpath (struct deps *d, const char *vpath)
289 deps_write (const struct deps *
356 deps_save(struct deps *deps, FILE *f) argument
385 deps_restore(struct deps *deps, FILE *fd, const char *self) argument
[all...]
H A Dmakedepend.c143 options->deps.style = DEPS_USER;
152 struct deps *deps = cpp_get_deps (reader); local
153 deps_add_vpath (deps, vpath);
H A Dinit.c251 if (pfile->deps)
252 deps_free (pfile->deps);
468 if (CPP_OPTION (pfile, deps.style) != DEPS_NONE)
470 if (!pfile->deps)
471 pfile->deps = deps_init ();
474 deps_add_default_target (pfile->deps, fname);
595 /* Don't write the deps file if there are errors. */
596 if (CPP_OPTION (pfile, deps.style) != DEPS_NONE
599 deps_write (pfile->deps, deps_stream, 72);
601 if (CPP_OPTION (pfile, deps
[all...]
H A Dpch.c349 if (!r->deps)
350 r->deps = deps_init ();
352 if (deps_save (r->deps, f) != 0)
686 if (deps_restore (r->deps, f, CPP_OPTION (r, restore_pch_deps) ? name : NULL)
H A Dfiles.c713 if (CPP_OPTION (pfile, deps.style) > !!sysp && !file->stack_count)
715 if (!file->main_file || !CPP_OPTION (pfile, deps.ignore_main_file))
716 deps_add_dep (pfile->deps, file->path);
840 bool print_dep = CPP_OPTION (pfile, deps.style) > (angle_brackets || !!sysp);
843 if (print_dep && CPP_OPTION (pfile, deps.missing_files) && errno == ENOENT)
844 deps_add_dep (pfile->deps, file->name);
849 if (CPP_OPTION (pfile, deps.style) && ! print_dep)
H A Dinternal.h403 struct deps *deps; member in struct:cpp_reader
/freebsd-10.0-release/usr.sbin/pkg_install/lib/
H A DMakefile6 deps.c version.c pkgwrap.c url.c pkgng.c
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/common/zfs/
H A Dzfeature_common.c129 boolean_t readonly, boolean_t mos, zfeature_info_t **deps)
140 if (deps == NULL)
141 deps = nodeps;
148 feature->fi_depends = deps;
128 zfeature_register(int fid, const char *guid, const char *name, const char *desc, boolean_t readonly, boolean_t mos, zfeature_info_t **deps) argument
/freebsd-10.0-release/tools/build/options/
H A Dmakeman231 comm -13 $t/config_WITH_ALL $t/config_WITH_ALL_${opt} | sed -n "/^${opt}$/!p" > $t/deps
235 comm -13 $t/config_WITHOUT_ALL $t/config_WITHOUT_ALL_${opt} | sed -n "/^${opt}$/!p" > $t/deps
243 comm -13 $t/deps - > $t/deps2
248 sort $t/deps $t/deps2 > $t/_deps
249 mv $t/_deps $t/deps
253 if [ -s $t/deps ] ; then
257 cat $t/deps | while read opt2 ; do
265 if [ -s $t/deps ] ; then
/freebsd-10.0-release/contrib/binutils/libiberty/
H A Dmaint-tool39 &deps() if $mode eq "deps";
213 sub deps {
227 $deps{$f} = join(' ', &deps_for("$incdir/$f"));
235 $deps{$f} = join(' ', &deps_for("$srcdir/$f"));
246 print OUT "# generated by \"make maint-deps\". Manual edits will be lost.\n\n";
260 push(@pending, split(' ', $deps{$p}));
265 @deps = sort { &locals_first($a,$b) } keys %scanned;
269 if ($#deps >= 0) {
272 for $dt (@deps) {
[all...]
/freebsd-10.0-release/contrib/gcclibs/libiberty/
H A Dmaint-tool39 &deps() if $mode eq "deps";
213 sub deps {
227 $deps{$f} = join(' ', &deps_for("$incdir/$f"));
235 $deps{$f} = join(' ', &deps_for("$srcdir/$f"));
246 print OUT "# generated by \"make maint-deps\". Manual edits will be lost.\n\n";
260 push(@pending, split(' ', $deps{$p}));
265 @deps = sort { &locals_first($a,$b) } keys %scanned;
269 if ($#deps >= 0) {
272 for $dt (@deps) {
[all...]
/freebsd-10.0-release/usr.sbin/pkg_install/create/
H A Dperform.c143 char **deps, *deporigin; local
158 deps = alloca(sizeof(*deps) * ndeps + 1);
159 if (deps == NULL) {
166 deps[i] = cp;
171 deps[ndeps] = NULL;
173 sortdeps(deps);
175 deporigin = strchr(deps[i], ':');
180 add_plist_top(&plist, PLIST_PKGDEP, deps[i]);
182 printf(" %s", deps[
[all...]
/freebsd-10.0-release/usr.sbin/jail/
H A Dstate.c63 int error, deps, ldeps; local
92 deps = 0;
103 deps++;
130 if (deps && (deps > 1 || ldeps)) {
/freebsd-10.0-release/sys/kern/
H A Dkern_linker.c140 const char* name, int deps);
583 lf->deps = NULL;
681 if (file->deps) {
683 linker_file_unload(file->deps[i], flags);
684 free(file->deps, M_LINKER);
685 file->deps = NULL;
722 if (file->deps) {
723 bcopy(file->deps, newdeps,
725 free(file->deps, M_LINKER);
727 file->deps
762 linker_file_lookup_symbol(linker_file_t file, const char *name, int deps) argument
777 linker_file_lookup_symbol_internal(linker_file_t file, const char *name, int deps) argument
[all...]
/freebsd-10.0-release/contrib/subversion/
H A Dgen-make.py69 for dep_type, target_dict in generator.graph.deps.items():
H A Dbuild.conf109 # add-deps - expands to additional autoconf-defined dependencies
110 # add-install-deps - like add-deps, but for the install step
246 add-deps = $(SVN_FS_LIB_DEPS)
247 add-install-deps = $(SVN_FS_LIB_INSTALL_DEPS)
281 add-deps = $(SVN_RA_LIB_DEPS)
282 add-install-deps = $(SVN_RA_LIB_INSTALL_DEPS)
556 add-deps = $(javahl_java_DEPS)
570 #add-deps = javahl-java
571 add-deps
[all...]
/freebsd-10.0-release/contrib/binutils/include/
H A Dbfdlink.h755 struct bfd_elf_version_deps *deps;
752 struct bfd_elf_version_deps *deps; member in struct:bfd_elf_version_tree

Completed in 267 milliseconds

123