Home
last modified time | relevance | path

Searched refs:inputs (Results 1 – 25 of 59) sorted by relevance

123

/dragonfly/contrib/binutils-2.34/gold/
H A Dincremental.cc306 unsigned int count = inputs.input_file_count(); in setup_readers()
429 inputs.command_line()); in do_check_inputs()
445 unsigned int count = inputs.input_file_count(); in do_check_inputs()
1281 inputs->input_files().begin(); in set_final_data_size()
1282 p != inputs->input_files().end(); in set_final_data_size()
1378 inputs->relocs_section()->set_current_data_size(inputs->get_reloc_count() in set_final_data_size()
1486 inputs->input_files().begin(); in write_input_files()
1487 p != inputs->input_files().end(); in write_input_files()
1526 inputs->input_files().begin(); in write_info_blocks()
1527 p != inputs->input_files().end(); in write_info_blocks()
[all …]
H A Doptions.cc448 cmdline->inputs().add_file(file); in parse_library()
484 cmdline->inputs().add_file(file); in parse_just_symbols()
579 cmdline->inputs().start_group(); in parse_start_group()
586 cmdline->inputs().end_group(); in parse_end_group()
593 cmdline->inputs().start_lib(cmdline->position_dependent_options()); in parse_start_lib()
600 cmdline->inputs().end_lib(); in parse_end_lib()
H A Dscript.cc1410 inputs() in inputs() function in gold::Parser_closure
1553 for (Input_arguments::const_iterator p = closure.inputs()->begin(); in read_input_script()
1554 p != closure.inputs()->end(); in read_input_script()
1558 if (p + 1 == closure.inputs()->end()) in read_input_script()
2716 Input_argument& arg = closure->inputs()->add_file(file); in script_add_file()
2735 Input_argument& arg = closure->inputs()->add_file(file); in script_add_library()
2755 closure->inputs()->start_group(); in script_start_group()
2765 closure->inputs()->end_group(); in script_end_group()
H A Dreloc.cc1101 Incremental_inputs* inputs = relinfo->layout->incremental_inputs(); in incremental_relocs_write_reltype() local
1102 gold_assert(inputs != NULL); in incremental_relocs_write_reltype()
1103 const off_t relocs_off = inputs->relocs_section()->offset(); in incremental_relocs_write_reltype()
1104 const off_t relocs_size = inputs->relocs_section()->data_size(); in incremental_relocs_write_reltype()
H A Dincremental.h815 Incremental_input_entry_reader(const Incremental_inputs_reader* inputs, in Incremental_input_entry_reader() argument
817 : inputs_(inputs), offset_(offset) in Incremental_input_entry_reader()
819 this->info_offset_ = Swap32::readval(inputs->p_ + offset + 4); in Incremental_input_entry_reader()
H A Doptions.h581 Command_line* inputs); \
2340 inputs() in inputs() function
/dragonfly/contrib/binutils-2.27/gold/
H A Dincremental.cc305 unsigned int count = inputs.input_file_count(); in setup_readers()
424 inputs.command_line()); in do_check_inputs()
440 unsigned int count = inputs.input_file_count(); in do_check_inputs()
1276 inputs->input_files().begin(); in set_final_data_size()
1277 p != inputs->input_files().end(); in set_final_data_size()
1373 inputs->relocs_section()->set_current_data_size(inputs->get_reloc_count() in set_final_data_size()
1481 inputs->input_files().begin(); in write_input_files()
1482 p != inputs->input_files().end(); in write_input_files()
1521 inputs->input_files().begin(); in write_info_blocks()
1522 p != inputs->input_files().end(); in write_info_blocks()
[all …]
H A Doptions.cc446 cmdline->inputs().add_file(file); in parse_library()
484 cmdline->inputs().add_file(file); in parse_just_symbols()
579 cmdline->inputs().start_group(); in parse_start_group()
586 cmdline->inputs().end_group(); in parse_end_group()
593 cmdline->inputs().start_lib(cmdline->position_dependent_options()); in parse_start_lib()
600 cmdline->inputs().end_lib(); in parse_end_lib()
H A Dscript.cc1380 inputs() in inputs() function in gold::Parser_closure
1523 for (Input_arguments::const_iterator p = closure.inputs()->begin(); in read_input_script()
1524 p != closure.inputs()->end(); in read_input_script()
1528 if (p + 1 == closure.inputs()->end()) in read_input_script()
2685 Input_argument& arg = closure->inputs()->add_file(file); in script_add_file()
2704 Input_argument& arg = closure->inputs()->add_file(file); in script_add_library()
2724 closure->inputs()->start_group(); in script_start_group()
2734 closure->inputs()->end_group(); in script_end_group()
H A Dreloc.cc1078 Incremental_inputs* inputs = relinfo->layout->incremental_inputs(); in incremental_relocs_write_reltype() local
1079 gold_assert(inputs != NULL); in incremental_relocs_write_reltype()
1080 const off_t relocs_off = inputs->relocs_section()->offset(); in incremental_relocs_write_reltype()
1081 const off_t relocs_size = inputs->relocs_section()->data_size(); in incremental_relocs_write_reltype()
H A Dincremental.h815 Incremental_input_entry_reader(const Incremental_inputs_reader* inputs, in Incremental_input_entry_reader() argument
817 : inputs_(inputs), offset_(offset) in Incremental_input_entry_reader()
819 this->info_offset_ = Swap32::readval(inputs->p_ + offset + 4); in Incremental_input_entry_reader()
H A Doptions.h536 Command_line* inputs); \
2134 inputs() in inputs() function
/dragonfly/contrib/gcc-8.0/gcc/
H A Dstmt.c480 check_unique_operand_names (tree outputs, tree inputs, tree labels) in check_unique_operand_names() argument
495 for (i = inputs; i ; i = TREE_CHAIN (i)) in check_unique_operand_names()
518 for (j = inputs; j ; j = TREE_CHAIN (j)) in check_unique_operand_names()
536 resolve_asm_operand_names (tree string, tree outputs, tree inputs, tree labels) in resolve_asm_operand_names() argument
543 check_unique_operand_names (outputs, inputs, labels); in resolve_asm_operand_names()
547 for (t = inputs; t ; t = TREE_CHAIN (t)) in resolve_asm_operand_names()
554 p = resolve_operand_name_1 (p, outputs, inputs, NULL); in resolve_asm_operand_names()
597 p = resolve_operand_name_1 (p, outputs, inputs, labels); in resolve_asm_operand_names()
613 resolve_operand_name_1 (char *p, tree outputs, tree inputs, tree labels) in resolve_operand_name_1() argument
635 for (t = inputs; t ; t = TREE_CHAIN (t), op++) in resolve_operand_name_1()
H A Dinternal-fn.def45 "_optab") and TYPE categorizes the optab based on its inputs and
68 unsigned inputs respectively, both without the trailing "_optab".
H A Dgimple.c627 gimple_build_asm_vec (const char *string, vec<tree, va_gc> *inputs, in gimple_build_asm_vec() argument
635 vec_safe_length (inputs), in gimple_build_asm_vec()
640 for (i = 0; i < vec_safe_length (inputs); i++) in gimple_build_asm_vec()
641 gimple_asm_set_input_op (p, i, (*inputs)[i]); in gimple_build_asm_vec()
H A Dfunction.c6639 rtvec inputs = ASM_OPERANDS_INPUT_VEC (op); in match_asm_constraints_1() local
6660 input = RTVEC_ELT (inputs, i); in match_asm_constraints_1()
6672 if (reg_overlap_mentioned_p (output, RTVEC_ELT (inputs, j))) in match_asm_constraints_1()
6725 if (reg_overlap_mentioned_p (input, RTVEC_ELT (inputs, j))) in match_asm_constraints_1()
6726 RTVEC_ELT (inputs, j) = replace_rtx (RTVEC_ELT (inputs, j), in match_asm_constraints_1()
/dragonfly/contrib/gcc-4.7/gcc/
H A Dstmt.c643 int ninputs = list_length (inputs); in expand_asm_operands()
665 if (! check_operand_nalternatives (outputs, inputs)) in expand_asm_operands()
674 for (t = inputs; t ; t = TREE_CHAIN (t), i++) in expand_asm_operands()
1210 check_operand_nalternatives (tree outputs, tree inputs) in check_operand_nalternatives() argument
1212 if (outputs || inputs) in check_operand_nalternatives()
1217 tree next = inputs; in check_operand_nalternatives()
1269 for (i = inputs; i ; i = TREE_CHAIN (i)) in check_unique_operand_names()
1292 for (j = inputs; j ; j = TREE_CHAIN (j)) in check_unique_operand_names()
1316 check_unique_operand_names (outputs, inputs, labels); in resolve_asm_operand_names()
1320 for (t = inputs; t ; t = TREE_CHAIN (t)) in resolve_asm_operand_names()
[all …]
H A Dfunction.c6957 rtvec inputs = ASM_OPERANDS_INPUT_VEC (op); in match_asm_constraints_1() local
6977 input = RTVEC_ELT (inputs, i); in match_asm_constraints_1()
6988 if (reg_overlap_mentioned_p (output, RTVEC_ELT (inputs, j))) in match_asm_constraints_1()
7041 if (reg_overlap_mentioned_p (input, RTVEC_ELT (inputs, j))) in match_asm_constraints_1()
7042 RTVEC_ELT (inputs, j) = replace_rtx (RTVEC_ELT (inputs, j), in match_asm_constraints_1()
H A Dgimple.c671 gimple_build_asm_vec (const char *string, VEC(tree,gc)* inputs, in gimple_build_asm_vec() argument
679 VEC_length (tree, inputs), in gimple_build_asm_vec()
684 for (i = 0; i < VEC_length (tree, inputs); i++) in gimple_build_asm_vec()
685 gimple_asm_set_input_op (p, i, VEC_index (tree, inputs, i)); in gimple_build_asm_vec()
/dragonfly/contrib/binutils-2.34/ld/emultempl/
H A Delf-x86.em30 After the output has been created, but before inputs are read. */
/dragonfly/contrib/awk/
H A DFIXES91 values inputs. When --csv is enabled, fields are separated
/dragonfly/contrib/bzip2/
H A DCHANGES63 to give reasonable behaviour even for very repetitive inputs.
/dragonfly/sys/sys/
H A Dsoundcard.h301 u_long inputs; /* bitmap of available inputs (per mixer) */ member
/dragonfly/contrib/binutils-2.27/binutils/
H A DREADME187 want input files to gas and command line switches used. The inputs to
/dragonfly/contrib/cryptsetup/po/
H A Dcryptsetup.pot247 msgid "Can't do passphrase verification on non-tty inputs.\n"

123