Home
last modified time | relevance | path

Searched refs:file (Results 1 – 25 of 6458) sorted by relevance

12345678910>>...259

/openbsd/src/gnu/usr.bin/gcc/gcc/fixinc/
Dfixinc.svr489 for file in $files; do
90 rm -rf $LIB/$file
91 if [ ! -d $LIB/$file ]
92 then mkdir $LIB/$file
103 for file in $files; do
104 dest=`ls -ld $file | sed -n 's/.*-> //p'`
109 cd `echo ./$file | sed -n 's&[^/]*$&&p'`
121 echo $file '->' $dest': Making link'
122 rm -fr ${LIB}/$file > /dev/null 2>&1
123 ln -s $dest ${LIB}/$file > /dev/null 2>&1
[all …]
Dfixinc.ptx84 file=stdio.h
85 if [ -r $file ] && [ ! -r ${LIB}/$file ]; then
86 cp $file ${LIB}/$file >/dev/null 2>&1 || echo "Can't copy $file"
87 chmod +w ${LIB}/$file 2>/dev/null
88 chmod a+r ${LIB}/$file 2>/dev/null
91 if [ -r ${LIB}/$file ]; then
92 echo Fixing $file, use of va_list
95 echo "#include <stdarg.h>") > ${LIB}/${file}.sed
110 ${LIB}/$file >> ${LIB}/${file}.sed
112 rm -f ${LIB}/$file; mv ${LIB}/${file}.sed ${LIB}/$file
[all …]
Dfixinc.winnt97 for file in $files; do
98 rm -rf $LIB/$file
99 if [ ! -d $LIB/$file ]
100 then mkdir $LIB/$file
117 for file in $files; do
118 echo $file
119 if egrep "!__STDC__" $file >NUL; then
120 if [ -r $file ]; then
121 cp $file $2/$file >NUL 2>&1 || echo "Can't copy $file"
122 chmod +w,a+r $2/$file
[all …]
/openbsd/src/gnu/gcc/gcc/
Dprint-tree.c62 dump_addr (FILE *file, const char *prefix, void *addr) in dump_addr() argument
65 fprintf (file, "%s#", prefix); in dump_addr()
67 fprintf (file, "%s%p", prefix, addr); in dump_addr()
73 print_node_brief (FILE *file, const char *prefix, tree node, int indent) in print_node_brief() argument
85 fprintf (file, " "); in print_node_brief()
86 fprintf (file, "%s <%s", prefix, tree_code_name[(int) TREE_CODE (node)]); in print_node_brief()
87 dump_addr (file, " ", node); in print_node_brief()
92 fprintf (file, " %s", IDENTIFIER_POINTER (DECL_NAME (node))); in print_node_brief()
95 fprintf (file, " L." HOST_WIDE_INT_PRINT_DEC, LABEL_DECL_UID (node)); in print_node_brief()
97 fprintf (file, " %c.%u", TREE_CODE (node) == CONST_DECL ? 'C' : 'D', in print_node_brief()
[all …]
/openbsd/src/gnu/usr.bin/gcc/gcc/
Dprint-tree.c60 print_node_brief (file, prefix, node, indent) in print_node_brief() argument
61 FILE *file; in print_node_brief()
76 fprintf (file, " ");
77 fprintf (file, "%s <%s ", prefix, tree_code_name[(int) TREE_CODE (node)]);
78 fprintf (file, HOST_PTR_PRINTF, (char *) node);
83 fprintf (file, " %s", IDENTIFIER_POINTER (DECL_NAME (node)));
90 fprintf (file, " %s", IDENTIFIER_POINTER (TYPE_NAME (node)));
93 fprintf (file, " %s",
98 fprintf (file, " %s", IDENTIFIER_POINTER (node));
104 fprintf (file, " overflow");
[all …]
Dra-debug.c71 ra_print_rtx_1op (file, x) in ra_print_rtx_1op() argument
72 FILE *file; in ra_print_rtx_1op()
81 fputs ((code == NEG) ? "-(" : "~(", file);
82 ra_print_rtx (file, op0, 0);
83 fputs (")", file);
86 fputs ("hi(", file);
87 ra_print_rtx (file, op0, 0);
88 fputs (")", file);
91 fprintf (file, "%s", GET_RTX_NAME (code));
93 fprintf (file, ":%s(", GET_MODE_NAME (GET_MODE (x)));
[all …]
/openbsd/src/sys/conf/
Dfiles75 # common file (e.g. vga) definitions.
83 file dev/ic/smc93cx6.c smc93cx6
87 file dev/ic/pcdisplay_subr.c pcdisplayops
88 file dev/ic/pcdisplay_chars.c pcdisplayops
92 file dev/ic/mk48txx.c mk48txx
101 file dev/pci/drm/drm_drv.c drm needs-flag
105 file dev/ic/vga.c vga & (vga_pci | vga_isa) needs-flag
106 file dev/ic/vga_subr.c vga & (vga_pci | vga_isa) needs-flag
110 file dev/videomode/edid.c edid
111 file dev/videomode/vesagtf.c edid
[all …]
/openbsd/src/gnu/usr.sbin/mkhybrid/src/libhfs_iso/
Dfile.c38 void f_selectfork(hfsfile *file, int fork) in f_selectfork() argument
42 file->fork = fkData; in f_selectfork()
43 memcpy(file->ext, file->cat.u.fil.filExtRec, sizeof(ExtDataRec)); in f_selectfork()
47 file->fork = fkRsrc; in f_selectfork()
48 memcpy(file->ext, file->cat.u.fil.filRExtRec, sizeof(ExtDataRec)); in f_selectfork()
51 file->fabn = 0; in f_selectfork()
52 file->pos = 0; in f_selectfork()
59 void f_getptrs(hfsfile *file, unsigned long **lglen, in f_getptrs() argument
62 if (file->fork == fkData) in f_getptrs()
65 *lglen = &file->cat.u.fil.filLgLen; in f_getptrs()
[all …]
/openbsd/src/gnu/usr.bin/gcc/gcc/cp/
Dptree.c30 cxx_print_decl (file, node, indent) in cxx_print_decl() argument
31 FILE *file; in cxx_print_decl()
39 indent_to (file, indent + 3);
40 fprintf (file, " mutable ");
47 indent_to (file, indent + 3);
51 fprintf (file, " pending-inline-info ");
52 fprintf (file, HOST_PTR_PRINTF, DECL_PENDING_INLINE_INFO (node));
57 fprintf (file, " sorted-fields ");
58 fprintf (file, HOST_PTR_PRINTF, DECL_SORTED_FIELDS (node));
63 fprintf (file, " template-info ");
[all …]
/openbsd/src/gnu/usr.bin/binutils/gdb/
Dui-file.c57 struct ui_file *file = xmalloc (sizeof (struct ui_file)); in ui_file_new() local
58 file->magic = &ui_file_magic; in ui_file_new()
59 set_ui_file_data (file, NULL, null_file_delete); in ui_file_new()
60 set_ui_file_flush (file, null_file_flush); in ui_file_new()
61 set_ui_file_write (file, null_file_write); in ui_file_new()
62 set_ui_file_fputs (file, null_file_fputs); in ui_file_new()
63 set_ui_file_read (file, null_file_read); in ui_file_new()
64 set_ui_file_isatty (file, null_file_isatty); in ui_file_new()
65 set_ui_file_rewind (file, null_file_rewind); in ui_file_new()
66 set_ui_file_put (file, null_file_put); in ui_file_new()
[all …]
/openbsd/src/sys/dev/pci/drm/
Dfiles.drm3 #file dev/pci/drm/aperture.c drm
4 file dev/pci/drm/dma-resv.c drm
5 file dev/pci/drm/drm_agpsupport.c drm & agp
6 file dev/pci/drm/drm_aperture.c drm
7 file dev/pci/drm/drm_atomic.c drm
8 file dev/pci/drm/drm_atomic_helper.c drm
9 file dev/pci/drm/drm_atomic_state_helper.c drm
10 file dev/pci/drm/drm_atomic_uapi.c drm
11 file dev/pci/drm/drm_auth.c drm
12 file dev/pci/drm/drm_blend.c drm
[all …]
/openbsd/src/gnu/gcc/libcpp/
Dfiles.c145 _cpp_file *file; member
150 static bool open_file (_cpp_file *file);
151 static bool pch_open_file (cpp_reader *pfile, _cpp_file *file,
153 static bool find_file_in_dir (cpp_reader *pfile, _cpp_file *file,
155 static bool read_file_guts (cpp_reader *pfile, _cpp_file *file);
156 static bool read_file (cpp_reader *pfile, _cpp_file *file);
157 static bool should_stack_file (cpp_reader *, _cpp_file *file, bool import);
160 static const char *dir_name_of_file (_cpp_file *file);
161 static void open_file_failed (cpp_reader *pfile, _cpp_file *file, int);
174 static char *remap_filename (cpp_reader *pfile, _cpp_file *file);
[all …]
/openbsd/src/sys/arch/arm/conf/
Dfiles.arm5 file arch/arm/arm/in_cksum_arm.S
8 file arch/arm/arm/db_disasm.c ddb
9 file arch/arm/arm/db_interface.c ddb
10 file arch/arm/arm/db_trace.c ddb
11 file arch/arm/arm/db_machdep.c ddb
12 file arch/arm/arm/disassem.c ddb
15 file arch/arm/arm/fiq.c fiq
16 file arch/arm/arm/fiq_subr.S fiq
22 file arch/arm/mainbus/mainbus.c mainbus
26 file arch/arm/simplebus/simplebus.c simplebus
[all …]
/openbsd/src/sys/arch/sh/conf/
Dfiles.sh4 file arch/sh/sh/cache.c
5 file arch/sh/sh/cache_sh3.c sh3
6 file arch/sh/sh/cache_sh4.c sh4
7 file arch/sh/sh/clock.c
8 file arch/sh/sh/db_disasm.c ddb
9 file arch/sh/sh/db_interface.c ddb
10 file arch/sh/sh/db_memrw.c ddb
11 file arch/sh/sh/db_trace.c ddb
12 file arch/sh/sh/devreg.c sh3 & sh4
13 file arch/sh/sh/interrupt.c
[all …]
/openbsd/src/sys/arch/m88k/conf/
Dfiles.m88k3 file arch/m88k/m88k/atomic.S multiprocessor
4 file arch/m88k/m88k/db_disasm.c ddb
5 file arch/m88k/m88k/db_interface.c ddb
6 file arch/m88k/m88k/db_sstep.c ddb
7 file arch/m88k/m88k/db_trace.c ddb
8 file arch/m88k/m88k/fpu.c
9 file arch/m88k/m88k/in_cksum.c
10 file arch/m88k/m88k/m88100_fp.c m88100
11 file arch/m88k/m88k/m88100_machdep.c m88100
12 file arch/m88k/m88k/m88110_fp.c m88110
[all …]
/openbsd/src/gnu/gcc/gcc/cp/
Dptree.c32 cxx_print_decl (FILE *file, tree node, int indent) in cxx_print_decl() argument
38 indent_to (file, indent + 3); in cxx_print_decl()
39 fprintf (file, " mutable "); in cxx_print_decl()
47 indent_to (file, indent + 3); in cxx_print_decl()
50 fprintf (file, " pending-inline-info %p", in cxx_print_decl()
54 fprintf (file, " sorted-fields %p", in cxx_print_decl()
58 fprintf (file, " template-info %p", in cxx_print_decl()
63 cxx_print_type (FILE *file, tree node, int indent) in cxx_print_type() argument
70 indent_to (file, indent + 3); in cxx_print_type()
71 fprintf (file, "index " HOST_WIDE_INT_PRINT_DEC " level " in cxx_print_type()
[all …]
/openbsd/src/regress/bin/ksh/
Dglob.t4 file-setup: dir 755 "[x"
5 file-setup: file 644 "[x/foo"
20 file-setup: dir 755 "dir"
21 file-setup: symlink 644 "dir/abc"
22 non-existent-file
34 file-setup: file 644 ".bc"
35 file-setup: file 644 "abc"
36 file-setup: file 644 "bbc"
37 file-setup: file 644 "cbc"
38 file-setup: file 644 "-bc"
[all …]
/openbsd/src/gnu/llvm/clang/tools/scan-build-py/tests/functional/exec/
Dmain.c60 void expected_out(const char *file) { in expected_out() argument
68 fprintf(fd, " \"command\": \"cc -c %s\",\n", file); in expected_out()
69 fprintf(fd, " \"file\": \"%s/%s\"\n", cwd, file); in expected_out()
73 void create_source(char *file) { in create_source() argument
74 FILE *fd = fopen(file, "w"); in create_source()
114 char *const file = "execv.c"; in call_execv() local
116 char *const argv[] = {"cc", "-c", file, 0}; in call_execv()
118 expected_out(file); in call_execv()
119 create_source(file); in call_execv()
127 char *const file = "execve.c"; in call_execve() local
[all …]
/openbsd/src/games/sail/
Ddr_3.c58 if (sp->file->captain[0] || sp->file->dir == 0) in moveall()
60 if (!sp->file->struck && windspeed && !snagged(sp) in moveall()
63 ma = maxmove(sp, sp->file->dir, 0); in moveall()
66 *sp->file->movebuf = '\0'; in moveall()
68 closeon(sp, closest, sp->file->movebuf, in moveall()
69 sizeof sp->file->movebuf, in moveall()
72 *sp->file->movebuf = '\0'; in moveall()
83 (void) strlcpy(sp->file->movebuf, "d", in moveall()
84 sizeof sp->file->movebuf); in moveall()
86 if (*sp->file->movebuf != 'd') in moveall()
[all …]
/openbsd/src/sys/arch/powerpc/conf/
Dfiles.powerpc4 file arch/powerpc/powerpc/setjmp.S ddb
5 file arch/powerpc/powerpc/cpu_subr.c
6 file arch/powerpc/powerpc/fpu.c
7 file arch/powerpc/powerpc/in_cksum.c
8 file arch/powerpc/powerpc/bus_dma.c
9 file arch/powerpc/powerpc/bus_space.c
10 file arch/powerpc/powerpc/pmap.c
11 file arch/powerpc/powerpc/process_machdep.c
12 file arch/powerpc/powerpc/sys_machdep.c
13 file arch/powerpc/powerpc/trap.c
[all …]
/openbsd/src/gnu/usr.bin/perl/Porting/
Dbump-perl-version238 for my $file (@mani_files) {
239 next if grep $file =~ m{^$_/}, @SKIP_DIRS;
240 if ($SKIP_FILES{$file}) {
241 warn "(skipping $file)\n";
244 open my $fh, '<', $file;
246 my @stat = stat $file;
257 next if defined $file_pat and $file !~ $file_pat;
276 print "\n$file\n" unless $header;
283 warn "Updating $file inplace\n";
284 open my $fh, '>', $file;
[all …]
Dadd-package.pl208 { my $file = 'installperl';
211 unless( `grep $TestBin $Repo/$file| grep $bin` ) {
212 print " Adding $bin to $file..." if $Verbose;
216 system("$^X -pi -e 's/($TestBin\\|)/$bin|\$1/' $Repo/$file")
217 and die "Could not add $bin to $file: $?";
219 push @ChangedFiles, $file;
221 print " $bin already mentioned in $file\n" if $Verbose;
226 { my $file = 'utils.lst';
229 unless( `grep $bin $Repo/$file` ) {
230 print " Adding $bin to $file..." if $Verbose;
[all …]
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/
DSource.pm256 my $file = {};
257 $file->{exists} = -e $source ? 1 : 0;
258 if ( $file->{exists} ) {
259 $meta->{file} = $file;
262 $file->{stat} = [ stat(_) ];
263 $file->{empty} = -z _ ? 1 : 0;
264 $file->{size} = -s _;
265 $file->{text} = -T _ ? 1 : 0;
266 $file->{binary} = -B _ ? 1 : 0;
267 $file->{read} = -r _ ? 1 : 0;
[all …]
/openbsd/src/regress/usr.bin/rcs/
DMakefile18 file file,v newfile newfile,v merge-noeol.out test test,v \
62 rcs-tflag-file \
216 @touch file
217 @${RCSCLEAN} -q file
218 @${RCSCLEAN} -q1.1 file
219 @${RCSCLEAN} -qsym file
220 @test -f file
222 @echo . | ${CI} -q -nsym file
223 @${CO} -q file
224 @${RCSCLEAN} -q file
[all …]
/openbsd/src/sys/arch/alpha/conf/
Dfiles.alpha13 file arch/alpha/dev/shared_intr.c alpha_shared_intr | dec_eb164 |
19 file arch/alpha/dev/sgmap_common.c alpha_sgmap | dec_3000_500
30 file arch/alpha/alpha/cpu.c cpu
73 file arch/alpha/mcbus/mcbus.c mcbus & dec_kn300
77 file arch/alpha/mcbus/mcmem.c mcmem
84 file arch/alpha/tc/tcasic.c tcasic needs-flag
85 file arch/alpha/tc/tc_bus_mem.c tcasic
86 file arch/alpha/tc/tc_dma.c tcasic
87 file arch/alpha/tc/tc_dma_3000_300.c tcasic & dec_3000_300
88 file arch/alpha/tc/tc_dma_3000_500.c tcasic & dec_3000_500
[all …]

12345678910>>...259