Searched refs:end (Results 226 - 250 of 399) sorted by relevance

1234567891011>>

/gem5/src/gpu-compute/
H A Ddispatcher.cc328 // update event end time (in nano-seconds)
335 uint64_t end = curTick() / 1000; local
337 shader->WriteMem((uint64_t)(&((_cl_event*)event)->end), &end,
/gem5/ext/libfdt/
H A Dfdt_rw.c79 char *end = (char *)fdt + _fdt_data_size(fdt); local
81 if (((p + oldlen) < p) || ((p + oldlen) > end))
83 if ((end - oldlen + newlen) > ((char *)fdt + fdt_totalsize(fdt)))
85 memmove(p + newlen, p + oldlen, end - p - oldlen);
/gem5/ext/drampower/src/
H A DMemoryPowerModel.h230 template <typename T> T sum(const std::vector<T> vec) const { return std::accumulate(vec.begin(), vec.end(), static_cast<T>(0)); }
/gem5/ext/pybind11/tests/
H A Dtest_local_bindings.cpp82 return std::accumulate(v.begin(), v.end(), 0);
/gem5/src/systemc/core/
H A Dmodule.cc116 for (; proxyIt != proxies.end(); proxyIt++, portIt++) {
/gem5/src/systemc/tests/systemc/compliance_1666/test210/
H A Dtest210.cpp16 for (std::vector<sc_object*>::iterator i = children.begin(); i != children.end(); i++)
/gem5/src/dev/arm/
H A Dbase_gic.cc109 if (pin_it != pins.end()) {
H A Drv_ctrl.cc174 if (it_dev == devices.end()) {
229 if (devices.find(addr) != devices.end()) {
/gem5/src/base/
H A Dcp_annotate.cc118 while (i != p->user_apps.end()) {
287 DPRINTF(Annotate, "Ending machine: %s; end stack: %s\n", sm,
408 DPRINTF(Annotate, "Explict end of State: %s IGNORED\n", st);
411 DPRINTF(Annotate, "Explict end of State: %s\n", st);
694 while (ai != qData[qi-1].end()) {
864 while (i != smtCache.end()) {
874 while (i != stCache[x-1].end()) {
899 while (i2 != nameCache.end()) {
943 if (i == data.end())
951 while (i != data.end()) {
[all...]
/gem5/src/mem/ruby/system/
H A DRubyPort.cc199 for (auto it = l.begin(); it != l.end(); ++it) {
224 for (auto it = l.begin(); it != l.end(); ++it) {
456 for (auto i = curRetryList.begin(); i != curRetryList.end(); ++i) {
602 for (CpuPortIter p = slave_ports.begin(); p != slave_ports.end(); ++p) {
/gem5/src/python/pybind11/
H A Dstats.cc103 .def("end", &Stats::Output::end)
/gem5/ext/googletest/googletest/src/
H A Dgtest-port.cc406 if (thread_local_pos == thread_to_thread_locals->end()) {
414 if (value_pos == thread_local_values.end()) {
437 it != thread_to_thread_locals->end();
442 if (value_pos != thread_local_values.end()) {
465 if (thread_local_pos != thread_to_thread_locals->end()) {
469 value_pos != thread_local_values.end();
699 << "'\\' cannot appear at the end.";
718 << "'$' can only appear at the end.";
775 // "$" only matches the end of a string. Note that regex being
1151 char* end
[all...]
/gem5/ext/dsent/model/
H A DElectricalModel.cc399 int end = net_indices_.second; local
401 for (int index = start; index <= end; ++index)
513 // case 2: 'assign downstream_net_name_[begin:end] = upstream_net_name_'
528 // case 3: 'assign downstream_net_name_ = upstream_net_name_[begin:end]'
542 // case 4: 'assign downstream_net_name_[begin:end] = upstream_net_name_[begin:end]'
604 // Assign downstream_net_name_[end:begin] = driver_multiplier_name_
650 TechModel::ConstWireLayerIterator it_end = getTechModel()->getAvailableWireLayers()->end();
673 TechModel::ConstWireLayerIterator it_end = getTechModel()->getAvailableWireLayers()->end();
703 TechModel::ConstWireLayerIterator it_end = getTechModel()->getAvailableWireLayers()->end();
[all...]
/gem5/src/dev/net/
H A Dtcp_iface.cc161 find_if(nodes.begin(), nodes.end(),
165 assert(iface0 != nodes.end());
/gem5/src/mem/
H A Dmem_checker.cc77 if (it == writes.end()) {
156 // Found a match, end search.
228 if (it == outstandingReads.end()) {
H A Dmem_checker.hh61 * transactions which have a start and end time. Because of this, the lifetimes
228 * Given a start and end time (of any read transaction), this function
329 auto it = l->end();
483 if (it == byte_trackers.end()) {
H A Dnoncoherent_xbar.cc165 assert(routeTo.find(pkt->req) == routeTo.end());
187 assert(route_lookup != routeTo.end());
/gem5/src/cpu/o3/
H A Dstore_set.cc289 if (store_list_it != storeList.end()) {
362 while (store_list_it != storeList.end()) {
/gem5/src/arch/mips/
H A Dtlb.cc84 if (i != lookupTable.end()) {
122 if (i != lookupTable.end()) {
/gem5/src/arch/power/
H A Dtlb.cc88 if (i != lookupTable.end()) {
125 if (i != lookupTable.end()) {
/gem5/src/mem/qos/
H A Dmem_ctrl.hh292 return masters.find(m_id) != masters.end();
350 while (it != queues[curr_prio].end()) {
/gem5/src/sim/
H A Dserialize.cc130 if (cpt_tags.find(t) == cpt_tags.end()) {
149 if (version_tags.find(t) == version_tags.end()) {
/gem5/src/arch/x86/
H A Ddecoder.hh138 DPRINTF(Decoder, "At the end of a chunk, idx = %d, chunks = %d.\n",
270 if (amIter != addrCacheMap.end()) {
278 if (imIter != instCacheMap.end()) {
/gem5/src/cpu/minor/
H A Dcpu.cc341 for (auto i = threads.begin(); i != threads.end(); i ++)
352 for (auto i = threads.begin(); i != threads.end(); i ++)
/gem5/ext/ply/example/BASIC/
H A Dbasinterp.py36 # Check for end statements
183 self.loopend= { } # Mapping saying where loops end
228 end = instr[2]
229 if not (end == ',' or end == ';'):
231 if end == ',': sys.stdout.write(" "*(15-(len(out) % 15)))
232 if end == ';': sys.stdout.write(" "*(3-(len(out) % 3)))

Completed in 50 milliseconds

1234567891011>>