Home
last modified time | relevance | path

Searched refs:this_fill (Results 1 – 2 of 2) sorted by relevance

/toolchain/binutils/binutils-2.25/gold/
Dscript-sections.cc829 std::string this_fill; in get_fill_string() local
830 this_fill.reserve(length); in get_fill_string()
831 while (this_fill.length() + fill->length() <= length) in get_fill_string()
832 this_fill += *fill; in get_fill_string()
833 if (this_fill.length() < length) in get_fill_string()
834 this_fill.append(*fill, 0, length - this_fill.length()); in get_fill_string()
835 return this_fill; in get_fill_string()
962 std::string this_fill = this->get_fill_string(fill, length); in set_section_addresses() local
963 posd = new Output_data_const(this_fill, 0); in set_section_addresses()
1676 std::string this_fill = this->get_fill_string(fill, length); in set_section_addresses() local
[all …]
Doutput.cc3832 std::string this_fill; in get_input_sections() local
3833 this_fill.reserve(length); in get_input_sections()
3834 while (this_fill.length() + fill.length() <= length) in get_input_sections()
3835 this_fill += fill; in get_input_sections()
3836 if (this_fill.length() < length) in get_input_sections()
3837 this_fill.append(fill, 0, length - this_fill.length()); in get_input_sections()
3839 Output_section_data* posd = new Output_data_const(this_fill, 0); in get_input_sections()