Searched refs:fill (Results 1 - 25 of 41) sorted by relevance

12

/gem5/ext/libelf/
H A Delf_fill.c33 elf_fill(int fill) argument
35 LIBELF_PRIVATE(fillchar) = fill;
/gem5/system/alpha/console/
H A Dprintf.c60 * prints value in radix, in a field width width, with fill
61 * character fill
65 * if fill is 0, use ' '
68 PutNumber(long value, int radix, int width, char fill) argument
77 if (fill == 0)
78 fill = ' ';
121 /* fill # ' ' and negative cannot happen at once */
132 PutRepChar(fill, width);
135 PutRepChar(fill, width);
150 putFloat(double a, int fieldwidth, char fill) argument
181 char fill = ' '; local
[all...]
/gem5/src/cpu/
H A Dfunc_unit.cc46 opLatencies.fill(0);
47 pipelined.fill(false);
/gem5/src/base/
H A Dframebuffer.cc91 FrameBuffer::fill(const Pixel &pixel) function in class:FrameBuffer
102 fill(black);
H A Dcprintf.cc48 saved_fill = stream.fill();
57 saved_fill = stream.fill();
111 stream.fill(' ');
266 // precision requries digits for width, must fill with 0
313 stream.fill(saved_fill);
H A Dframebuffer.hh107 * @param pixel Pixel value to fill with.
109 void fill(const Pixel &pixel);
/gem5/ext/drampower/src/
H A DCommandAnalysis.cc94 std::fill(numberofactsBanks.begin(), numberofactsBanks.end(), 0);
95 std::fill(numberofpresBanks.begin(), numberofpresBanks.end(), 0);
96 std::fill(numberofreadsBanks.begin(), numberofreadsBanks.end(), 0);
97 std::fill(numberofwritesBanks.begin(), numberofwritesBanks.end(), 0);
98 std::fill(actcyclesBanks.begin(), actcyclesBanks.end(), 0);
126 std::fill(first_act_cycle_banks.begin(), first_act_cycle_banks.end(), timestamp);
/gem5/util/
H A Drundiff113 sub fill subroutine
279 fill($fh1, \@lines1);
280 fill($fh2, \@lines2);
/gem5/ext/systemc/src/sysc/datatypes/bit/
H A Dsc_lv_base.cpp107 // if formatted, fill the rest with sign(s), otherwise fill with zeros
108 sc_logic_value_t fill = (s[s_len] == 'F' ? sc_logic_value_t( s[0] - '0' ) local
111 set_bit( i, fill );
H A Dsc_bv_base.cpp109 // if formatted, fill the rest with sign(s), otherwise fill with zeros
110 sc_logic_value_t fill = (s[s_len] == 'F' ? sc_logic_value_t( s[0] - '0' ) local
113 set_bit( i, fill );
/gem5/src/systemc/dt/bit/
H A Dsc_lv_base.cc125 // if formatted, fill the rest with sign(s), otherwise fill with zeros
126 sc_logic_value_t fill = (s[s_len] == 'F' ? sc_logic_value_t(s[0] - '0') local
129 set_bit(i, fill);
H A Dsc_bv_base.cc112 // if formatted, fill the rest with sign(s), otherwise fill with zeros
113 sc_logic_value_t fill = (s[s_len] == 'F' ? sc_logic_value_t(s[0] - '0') local
116 set_bit(i, fill);
/gem5/src/kern/linux/
H A Dprintk.cc142 out.fill('0');
163 out.fill(' ');
/gem5/ext/pybind11/tests/
H A Dtest_numpy_dtypes.cpp195 auto fill = [](py::array arr) { local
211 // shape: (3, 2) - post-fill
212 case 20: return fill(arr_t(shape, strides));
214 case 22: return fill(py::array(dtype, shape, strides));
215 case 23: return fill(arr_t(shape));
217 case 25: return fill(py::array(dtype, shape));
218 case 26: return fill(arr_t(buf_ndim2_null));
219 case 27: return fill(py::array(buf_ndim2_null));
227 case 40: return fill(arr_t(6));
229 case 42: return fill(p
[all...]
/gem5/ext/googletest/googletest/samples/
H A Dprime_tables.h103 ::std::fill(is_prime_, is_prime_ + is_prime_size_, true);
/gem5/src/cpu/o3/
H A Dfu_pool.cc91 maxOpLatencies.fill(Cycles(0));
92 pipelined.fill(true);
/gem5/tests/test-progs/asmtest/src/riscv/isa/rv64mi/
H A Dma_addr.S121 .fill 0xff, 1, 80
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_int64_io.cpp116 char fill_char = os.fill();
/gem5/src/arch/mips/
H A Dpra_constants.hh56 Bitfield<63, 30> fill; member in namespace:MipsISA
98 Bitfield<61, 40> fill; member in namespace:MipsISA
/gem5/src/arch/riscv/
H A Dpra_constants.hh56 Bitfield<63, 30> fill; member in namespace:RiscvISA
98 Bitfield<61, 40> fill; member in namespace:RiscvISA
H A Disa.cc62 std::fill(miscRegFile.begin(), miscRegFile.end(), 0);
/gem5/src/arch/generic/
H A Dvec_pred_reg.hh274 container.fill(false);
281 container.fill(true);
/gem5/src/mem/cache/
H A Dmshr.hh170 /** Set when the response should allocate on fill */
186 * @param alloc_on_fill Whether the pkt would allocate on a fill
207 std::fill(writesBitmap.begin(), writesBitmap.end(), false);
248 std::fill(begin, begin + pkt->getSize(), true);
274 * @param alloc_on_fill Whether it should allocate on a fill
295 * miss-packet has been created, and for the fill we therefore use
404 * miss-packet has been created, and for the fill we therefore use
418 * @param alloc_on_fill Should the cache allocate a block on fill
/gem5/src/dev/pci/
H A Dhost.cc153 std::fill(pkt_data, pkt_data + size, 0xFF);
/gem5/src/mem/cache/compressors/
H A Dcpack.cc68 std::fill(dictionary.begin(), dictionary.end(), zero_word);

Completed in 32 milliseconds

12