Searched refs:start (Results 126 - 150 of 224) sorted by relevance

123456789

/gem5/ext/googletest/googlemock/scripts/generator/cpp/
H A Dgmock_class.py89 if source[first_param.start:first_param.end].strip() == 'void':
109 # Get the full text of the parameters from the start
111 start = node.parameters[0].start
114 args_strings = re.sub(r'//.*', '', source[start:end])
/gem5/ext/pybind11/tests/
H A Dtest_opaque_types.py13 for i, k in enumerate(lst, start=1):
H A Dtest_numpy_array.cpp289 sm.def("proxy_init3", [](double start) {
295 r(i, j, k) = start++;
298 sm.def("proxy_init3F", [](double start) {
304 r(i, j, k) = start++;
330 sm.def("proxy_init3_dyn", [](double start) {
337 r(i, j, k) = start++;
/gem5/util/minorview/
H A Dmodel.py879 def skip_same_char(start, increment):
880 """Skip characters which match pic_at(start)"""
881 char = pic_at(start)
882 hunt = start
887 def find_size(start):
889 start consisting of (at least) a -. shaped corner describing
891 char = pic_at(start)
892 hunt_x = skip_same_char(start, Point(1,0))
893 hunt_y = skip_same_char(start, Point(0,1))
895 return off_bottom_right - start
[all...]
/gem5/ext/pybind11/include/pybind11/
H A Dstl_bind.h214 size_t start, stop, step, slicelength;
216 if (!slice.compute(v.size(), &start, &stop, &step, &slicelength))
223 seq->push_back(v[start]);
224 start += step;
234 size_t start, stop, step, slicelength;
235 if (!slice.compute(v.size(), &start, &stop, &step, &slicelength))
242 v[start] = value[i];
243 start += step;
259 size_t start, stop, step, slicelength;
261 if (!slice.compute(v.size(), &start,
[all...]
/gem5/configs/boot/
H A Dnat-spec-surge-server.rcS45 /benchmarks/apache2/bin/apachectl start
H A Dspec-surge-server.rcS43 /usr/sbin/apache2 -f /etc/apache2/httpd.conf -k start
H A Dsurge-server.rcS44 /usr/sbin/apache2 -f /etc/apache2/httpd.conf -k start
/gem5/util/dist/
H A Dgem5-dist.sh67 # for each ssh session (we use ssh to start gem5 processes) and one for
76 echo " -debug : debug mode (start gem5 in gdb)"
284 echo -n "waiting for $3 to start "
287 kill -0 $4 || { echo "Failed to start $3"; exit -1; }
364 # start watchdog to trigger complete abort (after a grace period) if any
/gem5/ext/sst/
H A DExtMaster.cc88 ti.rangeStart = range.start();
226 ti.rangeStart = range.start();
/gem5/util/plot_dram/
H A Ddram_sweep_plot.py149 # start anew
174 start, end = ax.get_xlim()
175 ax.xaxis.set_ticks(np.arange(start, end + 1, 64))
/gem5/src/mem/
H A Daddr_mapper.cc232 Addr offset = addr - originalRanges[i].start();
233 return offset + remappedRanges[i].start();
/gem5/src/cpu/kvm/
H A Dperfevent.hh107 * Don't start the performance counter automatically when
235 * @note If this counter is a group leader, it will start the
238 void start();
255 * start sampling with the new period. This problem was fixed for
H A Dvm.hh305 * @param tss_address Physical address of the start of the TSS
313 * @param start Physical start address in guest
316 void coalesceMMIO(Addr start, int size);
460 * initialization until a CPU is about to start.
/gem5/src/systemc/tests/include/
H A DSimpleBusAT.h319 sc_dt::uint64 start, end; local
320 start = dmi_data.get_start_address();
323 limitRange(portId, start, end);
325 dmi_data.set_start_address(start);
/gem5/ext/testlib/
H A Dsandbox.py127 self.stdout_thread.start()
128 self.stderr_thread.start()
180 self.p.start()
/gem5/src/gpu-compute/
H A Ddispatcher.cc197 // update event start time (in nano-seconds)
198 uint64_t start = curTick() / 1000; local
200 shader->WriteMem((uint64_t)(&((_cl_event*)hs.event)->start),
201 &start, sizeof(uint64_t), 0);
/gem5/src/systemc/tlm_bridge/
H A Dgem5_to_tlm.cc186 sc_dt::uint64 start = trans.get_address(); local
187 sc_dt::uint64 end = start + trans.get_data_length();
190 AddrRange r(start, end);
/gem5/src/dev/
H A Dpixelpump.hh166 void start();
/gem5/src/systemc/core/
H A Dsc_main.cc85 ::sc_gem5::scheduler.start(now + time.value(), p == SC_RUN_TO_TIME);
/gem5/tests/testing/
H A Dhelpers.py98 timer.start()
/gem5/ext/ply/ply/
H A Dyacc.py324 # The start state is assumed to be (0,$end)
635 # The start state is assumed to be (0,$end)
907 # The start state is assumed to be (0,$end)
1470 # rule 0 is S' -> start where start is the start symbol.
1473 def set_start(self,start=None):
1474 if not start:
1475 start = self.Productions[1].name
1476 if start no
[all...]
/gem5/src/dev/net/
H A Ddist_iface.hh167 * @param start Start tick for dist synchronisation
171 void init(Tick start, Tick repeat);
315 void start();
474 * Use pseudoOp to start synchronization.
640 * Trigger the master to start/stop synchronization.
/gem5/ext/googletest/googletest/src/
H A Dgtest-printers.cc63 void PrintByteSegmentInObjectTo(const unsigned char* obj_bytes, size_t start, argument
67 const size_t j = start + i;
/gem5/src/dev/alpha/
H A Dtsunami_pchip.cc82 Addr daddr = (pkt->getAddr() - pioRange.start()) >> 6;;
166 Addr daddr = (pkt->getAddr() - pioRange.start()) >> 6;

Completed in 44 milliseconds

123456789