Home
last modified time | relevance | path

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

12345678910>>...291

/netbsd/src/external/gpl3/gdb/dist/sim/ppc/
Dgen-idecode.c41 lf_print_opcodes(lf *file, in lf_print_opcodes() argument
47 lf_printf(file, "_%d_%d", in lf_print_opcodes()
51 lf_printf(file, "__%d", table->opcode_nr); in lf_print_opcodes()
61 lf_print_table_name(lf *file, in lf_print_table_name() argument
64 lf_printf(file, "idecode_table"); in lf_print_table_name()
65 lf_print_opcodes(file, table); in lf_print_table_name()
71 print_idecode_table(lf *file, in print_idecode_table() argument
75 lf_printf(file, "/* prime the search */\n"); in print_idecode_table()
76 lf_printf(file, "idecode_table_entry *table = "); in print_idecode_table()
77 lf_print_table_name(file, entry); in print_idecode_table()
[all …]
Dgen-model.c37 lf *file, in model_c_or_h_data() argument
41 table_entry_print_cpp_line_nr(file, data); in model_c_or_h_data()
42 lf_print__c_code(file, data->annex); in model_c_or_h_data()
43 lf_print__internal_ref(file); in model_c_or_h_data()
44 lf_printf(file, "\n"); in model_c_or_h_data()
50 lf *file, in model_c_or_h_function() argument
58 lf_printf(file, "\n"); in model_c_or_h_function()
59 lf_print__function_type(file, function->fields[function_type], prefix, " "); in model_c_or_h_function()
60 lf_printf(file, "%s\n(%s);\n", in model_c_or_h_function()
63 lf_printf(file, "\n"); in model_c_or_h_function()
[all …]
Dtable.c61 open_table *file; local
71 file = ZALLOC (open_table);
72 ASSERT(file != NULL);
73 file->nr_fields = nr_fields;
74 file->nr_model_fields = nr_model_fields;
75 file->root = root;
76 file->parent = root->current;
77 root->current = file;
94 file->file_name = dup_name;
114 file->size = stat_buf.st_size;
[all …]
Digen.c54 print_insn_bits(lf *file, insn_bits *bits) in print_insn_bits() argument
59 nr += print_insn_bits(file, bits->last); in print_insn_bits()
60 nr += lf_putchr(file, '_'); in print_insn_bits()
61 nr += lf_putstr(file, bits->field->val_string); in print_insn_bits()
63 nr += lf_putint(file, bits->opcode->boolean_constant); in print_insn_bits()
66 nr += lf_putint(file, bits->value << (bits->field->last - bits->opcode->last)); in print_insn_bits()
68 nr += lf_putint(file, bits->value); in print_insn_bits()
74 print_function_name(lf *file, in print_function_name() argument
83 nr += lf_putstr(file, "semantic_"); in print_function_name()
86 nr += lf_printf(file, "idecode_"); in print_function_name()
[all …]
Dgen-icache.c43 print_icache_function_header(lf *file, in print_icache_function_header() argument
48 lf_printf(file, "\n"); in print_icache_function_header()
49 lf_print__function_type(file, ICACHE_FUNCTION_TYPE, "EXTERN_ICACHE", " "); in print_icache_function_header()
50 print_function_name(file, in print_icache_function_header()
54 lf_printf(file, "\n(%s)", ICACHE_FUNCTION_FORMAL); in print_icache_function_header()
56 lf_printf(file, ";"); in print_icache_function_header()
57 lf_printf(file, "\n"); in print_icache_function_header()
63 lf *file, in print_icache_declaration() argument
70 print_icache_function_header(file, in print_icache_declaration()
76 print_icache_function_header(file, in print_icache_declaration()
[all …]
/netbsd/src/external/gpl3/gdb/dist/sim/igen/
Dgen-engine.c41 print_engine_issue_prefix_hook (lf *file) in print_engine_issue_prefix_hook() argument
43 lf_printf (file, "\n"); in print_engine_issue_prefix_hook()
44 lf_indent_suppress (file); in print_engine_issue_prefix_hook()
45 lf_printf (file, "#if defined (ENGINE_ISSUE_PREFIX_HOOK)\n"); in print_engine_issue_prefix_hook()
46 lf_printf (file, "ENGINE_ISSUE_PREFIX_HOOK();\n"); in print_engine_issue_prefix_hook()
47 lf_indent_suppress (file); in print_engine_issue_prefix_hook()
48 lf_printf (file, "#endif\n"); in print_engine_issue_prefix_hook()
49 lf_printf (file, "\n"); in print_engine_issue_prefix_hook()
53 print_engine_issue_postfix_hook (lf *file) in print_engine_issue_postfix_hook() argument
55 lf_printf (file, "\n"); in print_engine_issue_postfix_hook()
[all …]
Dgen-idecode.c41 lf_print_opcodes (lf *file, const gen_entry *table) in lf_print_opcodes() argument
48 lf_printf (file, "_%d_%d", in lf_print_opcodes()
52 lf_printf (file, "__%d", table->opcode_nr); in lf_print_opcodes()
62 print_idecode_ifetch (lf *file, in print_idecode_ifetch() argument
70 lf_printf (file, in print_idecode_ifetch()
83 lf_print_table_name (lf *file, const gen_entry *table) in lf_print_table_name() argument
85 lf_printf (file, "idecode_table"); in lf_print_table_name()
86 lf_print_opcodes (file, table); in lf_print_table_name()
92 print_idecode_table (lf *file, const gen_entry *entry, const char *result) in print_idecode_table() argument
94 lf_printf (file, "/* prime the search */\n"); in print_idecode_table()
[all …]
Dgen-semantics.c41 print_semantic_function_header (lf *file, in print_semantic_function_header() argument
49 lf_printf (file, "\n"); in print_semantic_function_header()
50 lf_print__function_type_function (file, print_semantic_function_type, in print_semantic_function_header()
53 indent = print_function_name (file, in print_semantic_function_header()
61 indent += lf_printf (file, " "); in print_semantic_function_header()
62 lf_indent (file, +indent); in print_semantic_function_header()
66 lf_printf (file, "\n"); in print_semantic_function_header()
68 lf_printf (file, "("); in print_semantic_function_header()
69 lf_indent (file, +1); in print_semantic_function_header()
70 print_semantic_function_formal (file, nr_prefetched_words); in print_semantic_function_header()
[all …]
Dgen-support.c39 print_support_function_name (lf *file, in print_support_function_name() argument
45 lf_print__function_type_function (file, print_semantic_function_type, in print_support_function_name()
49 print_function_name (file, function->name, NULL, NULL, NULL, in print_support_function_name()
51 lf_printf (file, "\n("); in print_support_function_name()
52 lf_indent (file, +1); in print_support_function_name()
53 print_semantic_function_formal (file, 0); in print_support_function_name()
54 lf_indent (file, -1); in print_support_function_name()
55 lf_printf (file, ")"); in print_support_function_name()
57 lf_printf (file, ";"); in print_support_function_name()
58 lf_printf (file, "\n"); in print_support_function_name()
[all …]
Dlf.c87 lf_get_file_type (const lf *file) in lf_get_file_type() argument
89 return file->type; in lf_get_file_type()
94 lf_close (lf *file) in lf_close() argument
100 if (file->stream == stdout) in lf_close()
104 fp = fopen (file->filename, "r"); in lf_close()
112 if (len == ftell (file->stream)) in lf_close()
125 rewind (file->stream); in lf_close()
127 while ((cnt = fread (newbuf + off, 1, len - off, file->stream)) > 0) in lf_close()
138 if (fclose (file->stream)) in lf_close()
146 if (rename (file->tmpname, file->filename) != 0) in lf_close()
[all …]
Dtable.c55 current_line (open_table * file) in current_line() argument
58 *entry = file->pseudo_line; in current_line()
63 new_table_entry (open_table * file, table_entry_type type) in new_table_entry() argument
67 entry->file = file->root; in new_table_entry()
68 entry->line = current_line (file); in new_table_entry()
88 open_table *file; in table_push() local
97 file = ZALLOC (open_table); in table_push()
98 if (file == NULL) in table_push()
103 file->root = root; in table_push()
104 file->parent = root->current; in table_push()
[all …]
Digen.c54 print_semantic_function_formal (lf *file, int nr_prefetched_words) in print_semantic_function_formal() argument
60 nr += lf_printf (file, "SIM_DESC sd,\n"); in print_semantic_function_formal()
61 nr += lf_printf (file, "%sidecode_cache *cache_entry,\n", in print_semantic_function_formal()
63 nr += lf_printf (file, "%sinstruction_address cia", in print_semantic_function_formal()
68 nr += lf_printf (file, "sim_cpu *cpu,\n"); in print_semantic_function_formal()
71 nr += lf_printf (file, "%sinstruction_word instruction_%d,\n", in print_semantic_function_formal()
74 nr += lf_printf (file, "%sinstruction_address cia", in print_semantic_function_formal()
79 nr += lf_printf (file, "SIM_DESC sd,\n"); in print_semantic_function_formal()
82 nr += lf_printf (file, "%sinstruction_word instruction_%d,\n", in print_semantic_function_formal()
85 nr += lf_printf (file, "%sinstruction_address cia", in print_semantic_function_formal()
[all …]
Dgen-itable.c48 itable_h_insn (lf *file, in itable_h_insn() argument
55 lf_print__line_ref (file, instruction->line); in itable_h_insn()
56 lf_printf (file, " "); in itable_h_insn()
57 print_function_name (file, in itable_h_insn()
61 lf_printf (file, ",\n"); in itable_h_insn()
78 itable_print_enum (lf *file, const filter *set, const char *name) in itable_print_enum() argument
81 lf_printf (file, "typedef enum {\n"); in itable_print_enum()
82 lf_indent (file, +2); in itable_print_enum()
86 lf_printf (file, "%sitable_%s_%s,\n", in itable_print_enum()
90 lf_indent_suppress (file); in itable_print_enum()
[all …]
Dgen-icache.c42 print_icache_function_header (lf *file, in print_icache_function_header() argument
49 lf_printf (file, "\n"); in print_icache_function_header()
50 lf_print__function_type_function (file, print_icache_function_type, in print_icache_function_header()
52 print_function_name (file, in print_icache_function_header()
55 lf_printf (file, "\n("); in print_icache_function_header()
56 print_icache_function_formal (file, nr_prefetched_words); in print_icache_function_header()
57 lf_printf (file, ")"); in print_icache_function_header()
59 lf_printf (file, ";"); in print_icache_function_header()
60 lf_printf (file, "\n"); in print_icache_function_header()
65 print_icache_declaration (lf *file, in print_icache_declaration() argument
[all …]
/netbsd/src/external/gpl3/binutils/dist/gprof/
Dbsd_callg_bl.c9 bsd_callg_blurb (FILE *file) in bsd_callg_blurb() argument
11 fputs ("\n", file); in bsd_callg_blurb()
12 fputs ("\n", file); in bsd_callg_blurb()
13 fputs ("\n", file); in bsd_callg_blurb()
14 fputs ("call graph profile:\n", file); in bsd_callg_blurb()
15 fputs (" The sum of self and descendents is the major sort\n", file); in bsd_callg_blurb()
16 fputs (" for this listing.\n", file); in bsd_callg_blurb()
17 fputs ("\n", file); in bsd_callg_blurb()
18 fputs (" function entries:\n", file); in bsd_callg_blurb()
19 fputs ("\n", file); in bsd_callg_blurb()
[all …]
Dfsf_callg_bl.c9 fsf_callg_blurb (FILE *file) in fsf_callg_blurb() argument
11 fputs ("\n", file); in fsf_callg_blurb()
12 fputs (" This table describes the call tree of the program, and was sorted by\n", file); in fsf_callg_blurb()
13 fputs (" the total amount of time spent in each function and its children.\n", file); in fsf_callg_blurb()
14 fputs ("\n", file); in fsf_callg_blurb()
15 fputs (" Each entry in this table consists of several lines. The line with the\n", file); in fsf_callg_blurb()
16 fputs (" index number at the left hand margin lists the current function.\n", file); in fsf_callg_blurb()
17 fputs (" The lines above it list the functions that called this function,\n", file); in fsf_callg_blurb()
18 fputs (" and the lines below it list the functions this one called.\n", file); in fsf_callg_blurb()
19 fputs (" This line lists:\n", file); in fsf_callg_blurb()
[all …]
/netbsd/src/external/gpl3/gdb/dist/gdb/
Dgdbarch.py52 print(copyright, file=f)
53 print(file=f)
54 print(file=f)
55 print(file=f)
56 print("/* The following are pre-initialized by GDBARCH. */", file=f)
60 print(file=f)
64 file=f,
67 print(file=f)
68 print(file=f)
69 print("/* The following are initialized by the target dependent code. */", file=f)
[all …]
/netbsd/src/sys/kern/
Dfiles.kern14 file conf/debugsyms.c kern
15 file conf/param.c kern
16 file kern/bufq_disksort.c bufq_disksort
17 file kern/bufq_fcfs.c bufq_fcfs
18 file kern/bufq_priocscan.c bufq_priocscan
19 file kern/bufq_readprio.c bufq_readprio | new_bufq_strategy
20 file kern/compat_stub.c kern
21 file kern/core_elf32.c exec_elf32 & coredump
22 file kern/core_elf64.c exec_elf64 & coredump
23 file kern/core_netbsd.c coredump
[all …]
/netbsd/src/sys/external/bsd/acpica/conf/
Dfiles.acpica9 file common/ahids.c acpica
10 file common/ahuuids.c acpica & acpi_debug & ddb
13 file debugger/dbcmds.c acpica & acpi_debug & ddb
14 file debugger/dbconvert.c acpica & acpi_debug & ddb
15 file debugger/dbdisply.c acpica & acpi_debug & ddb
16 file debugger/dbexec.c acpica & acpi_debug & ddb
17 file debugger/dbhistry.c acpica & acpi_debug & ddb
18 file debugger/dbinput.c acpica & acpi_debug & ddb
19 file debugger/dbmethod.c acpica & acpi_debug & ddb
20 file debugger/dbnames.c acpica & acpi_debug & ddb
[all …]
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dprint-tree.cc47 dump_addr (FILE *file, const char *prefix, const void *addr) in dump_addr() argument
50 fprintf (file, "%s#", prefix); in dump_addr()
52 fprintf (file, "%s" HOST_PTR_PRINTF, prefix, addr); in dump_addr()
59 print_real_cst (FILE *file, const_tree node, bool brief) in print_real_cst() argument
62 fprintf (file, " overflow"); in print_real_cst()
66 fprintf (file, REAL_VALUE_NEGATIVE (d) ? " -Inf" : " Inf"); in print_real_cst()
82 fprintf (file, " %s%sNaN", d.sign ? "-" : "", in print_real_cst()
89 fprintf (file, "(0x%s", d.canonical ? "" : "0"); in print_real_cst()
91 fprintf (file, "(%s", d.canonical ? "" : "0"); in print_real_cst()
94 fprintf (file, "(0)"); in print_real_cst()
[all …]
/netbsd/src/external/gpl3/gcc/dist/gcc/cp/
Dptree.cc29 cxx_print_decl (FILE *file, tree node, int indent) in cxx_print_decl() argument
35 indent_to (file, indent + 3); in cxx_print_decl()
36 fprintf (file, " mutable "); in cxx_print_decl()
49 indent_to (file, indent + 3); in cxx_print_decl()
50 fprintf (file, " full-name \"%s\"", decl_as_string (node, flags)); in cxx_print_decl()
54 print_node (file, "result", DECL_TEMPLATE_RESULT (node), indent + 4); in cxx_print_decl()
55 print_node (file, "parms", DECL_TEMPLATE_PARMS (node), indent + 4); in cxx_print_decl()
56 indent_to (file, indent + 3); in cxx_print_decl()
57 fprintf (file, " full-name \"%s\"", in cxx_print_decl()
77 indent_to (file, indent + 3); in cxx_print_decl()
[all …]
/netbsd/src/external/bsd/pkg_install/dist/create/
Dutil.c59 update_ids(struct memory_file *file) in update_ids() argument
63 if (file->owner != NULL) { in update_ids()
66 if (uid_from_user(file->owner, &uid) == -1) in update_ids()
67 errx(2, "user %s unknown", file->owner); in update_ids()
68 file->st.st_uid = uid; in update_ids()
70 if ((s = user_from_uid(file->st.st_uid, 1)) == NULL) in update_ids()
72 (unsigned) file->st.st_uid); in update_ids()
73 file->owner = xstrdup(s); in update_ids()
76 if (file->group != NULL) { in update_ids()
79 if (gid_from_group(file->group, &gid) == -1) in update_ids()
[all …]
/netbsd/src/crypto/external/cpl/trousers/dist/src/tspi/daa/
Ddaa_debug.c8 save_KEY_PAIR_WITH_PROOF(FILE *file, in save_KEY_PAIR_WITH_PROOF() argument
11 save_DAA_PK_internal( file, key_pair_with_proof->pk); in save_KEY_PAIR_WITH_PROOF()
12 save_DAA_PRIVATE_KEY( file, key_pair_with_proof->private_key); in save_KEY_PAIR_WITH_PROOF()
13 save_DAA_PK_PROOF_internal( file, key_pair_with_proof->proof); in save_KEY_PAIR_WITH_PROOF()
19 load_KEY_PAIR_WITH_PROOF(FILE *file) in load_KEY_PAIR_WITH_PROOF() argument
24 key_pair_with_proof->pk = load_DAA_PK_internal(file); in load_KEY_PAIR_WITH_PROOF()
25 key_pair_with_proof->private_key = load_DAA_PRIVATE_KEY(file); in load_KEY_PAIR_WITH_PROOF()
26 key_pair_with_proof->proof = load_DAA_PK_PROOF_internal(file); in load_KEY_PAIR_WITH_PROOF()
32 save_DAA_PK_internal(FILE *file, const TSS_DAA_PK_internal *pk_internal) in save_DAA_PK_internal() argument
38 BI_SAVE( pk_internal->modulus, file); in save_DAA_PK_internal()
[all …]
/netbsd/src/etc/mtree/
Dspecial4 # This file may be overwritten on upgrades.
20 ./boot.cfg type=file mode=0644 optional
29 ./etc/Distfile type=file mode=0644 optional
32 ./etc/auto_master type=file mode=0644
34 ./etc/autofs/include_ldap type=file mode=0755
35 ./etc/autofs/include_nis type=file mode=0755
36 ./etc/autofs/special_hosts type=file mode=0755
37 ./etc/autofs/special_media type=file mode=0755
38 ./etc/autofs/special_noauto type=file mode=0755
39 ./etc/autofs/special_null type=file mode=0755
[all …]
/netbsd/src/sys/ufs/
Dfiles.ufs17 file ufs/ext2fs/ext2fs_alloc.c ext2fs
18 file ufs/ext2fs/ext2fs_balloc.c ext2fs
19 file ufs/ext2fs/ext2fs_bmap.c ext2fs
20 file ufs/ext2fs/ext2fs_bswap.c ext2fs
21 file ufs/ext2fs/ext2fs_hash.c ext2fs
22 file ufs/ext2fs/ext2fs_htree.c ext2fs
23 file ufs/ext2fs/ext2fs_extents.c ext2fs
24 file ufs/ext2fs/ext2fs_inode.c ext2fs
25 file ufs/ext2fs/ext2fs_lookup.c ext2fs
26 file ufs/ext2fs/ext2fs_readwrite.c ext2fs
[all …]

12345678910>>...291