Searched refs:end (Results 351 - 375 of 399) sorted by relevance

<<111213141516

/gem5/src/cpu/kvm/
H A Dvm.cc385 for (pos = memorySlots.begin(); pos != memorySlots.end(); pos++) {
H A Dx86_cpu.cc1472 std::copy(cpuid.begin(), cpuid.end(), kvm_cpuid->entries);
1492 std::copy(msrs.begin(), msrs.end(), kvm_msrs->entries);
1545 if (X86ISA::msrMap.find(*it) != X86ISA::msrMap.end()) {
/gem5/ext/googletest/googlemock/src/
H A Dgmock-matchers.cc268 // this edge is a dead end or leads to the sink.
318 for (Iter it = pairs.begin(); it != pairs.end(); ++it) {
/gem5/src/python/m5/util/
H A Dcode_formatter.py321 print(f, end=' ')
/gem5/src/mem/cache/tags/
H A Dfa_lru.cc179 if (iter != tagHash.end()) {
/gem5/src/cpu/testers/traffic_gen/
H A Dbase.cc467 panic_if(iter == waitingResp.end(), "%s: "
/gem5/src/dev/arm/
H A Dgic_v3_its.cc333 return entry != cmdDispatcher.end() ? entry->second.name : "INVALID";
379 if (entry != cmdDispatcher.end()) {
1247 tableBases.begin(), tableBases.end(),
1251 panic_if(base_it == tableBases.end(),
/gem5/src/arch/sparc/
H A Dtlb.cc86 for (i = lookupTable.begin(); i != lookupTable.end(); i++) {
185 assert(i != lookupTable.end());
216 if (i == lookupTable.end()) {
275 if (i != lookupTable.end()) {
/gem5/src/cpu/minor/
H A Dlsq.cc125 /* 'end' here means the address of the byte just past the request
405 i != fragmentPackets.end(); i++)
729 auto found = std::find(slots.begin(), slots.end(), request);
731 if (found != slots.end()) {
879 i != slots.end())
/gem5/ext/ply/ply/
H A Dlex.py334 self.lexpos = m.end()
337 lexpos = m.end()
340 lexpos = m.end()
1021 sys.stdout.write("Reading from standard input (type EOF to end):\n")
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_simcontext.cpp1008 end();
1033 // (e.g., directly from sc_main), the end of simulation notifications
1067 sc_simcontext::end() function in class:sc_core::sc_simcontext
1240 std::remove( m_trace_files.begin(), m_trace_files.end(), tf )
2063 // Andy Goodrich: moved the modification log to the end of the file to
H A Dsc_simcontext.h180 void end();
773 // Andy Goodrich: moved the modification log to the end of the file to
/gem5/src/python/m5/ext/pyfdt/
H A Dpyfdt.py115 end = len(value)
133 while pos < end:
135 while pos < end and value[pos] != '\0' \
916 FDT_END: 'end'}
1013 elif self.__fdt_dt_tag_name.get(tag, '') in 'end':
1068 elif self.__fdt_dt_tag_name.get(tag[0], '') in 'end':
/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc686 EXPECT_THAT(test_vector, ElementsAreArray(expected.begin(), expected.end()));
711 ElementsAreArray(expect.begin(), expect.end());
716 for (Iter it = expect.begin(); it != expect.end(); ++it) { *it += 10; }
H A Dgmock-more-actions_test.cc642 a = SetArrayArgument<2>(letters.begin(), letters.end());
691 Action<MyFunction> a = SetArrayArgument<1>(letters.begin(), letters.end());
/gem5/src/arch/arm/kvm/
H A Darmv8_cpu.cc393 deviceRegSet.find(idx) != deviceRegSet.end());
/gem5/src/mem/ruby/network/garnet2.0/
H A DNetworkInterface.cc288 stallIter != m_stall_queue.end(); ) {
/gem5/src/gpu-compute/
H A Dtlb_coalescer.cc216 // schedule clean up for end of this cycle
421 iter != coalescerFIFO.end() && !rejected; ) {
H A Dcompute_unit.cc1018 auto end = gpuDynInst->memStatusVector.end(); local
1020 while (iter != end) {
/gem5/src/cpu/pred/
H A Dbpred_unit.cc445 //HistoryIt hist_it = find(pred_hist.begin(), pred_hist.end(),
448 //assert(hist_it != pred_hist.end());
553 while (pred_hist_it != ph.end()) {
/gem5/src/python/m5/
H A Dmain.py147 option("--debug-end", metavar="TICK", type='int',
443 print("The program exited via sys.exit(). Exit status: ", end=' ')
/gem5/src/base/stats/
H A Dtext.cc162 Text::end() function in class:Stats::Text
756 for (it = data.cmap.begin(); it != data.cmap.end(); it++) {
/gem5/src/cpu/simple/
H A Dtiming.cc223 if (std::find(activeThreads.begin(), activeThreads.end(), thread_num)
224 == activeThreads.end()) {
/gem5/ext/pybind11/include/pybind11/detail/
H A Dcommon.h245 the pointer to its underlying Python object at the end.
768 // any standard container (or C-style array) supporting std::begin/std::end, any singleton
782 any_container(const Container &c) : any_container(std::begin(c), std::end(c)) { }
787 any_container(const std::initializer_list<TIn> &c) : any_container(c.begin(), c.end()) { }
/gem5/src/base/
H A Dcp_annotate.hh358 if (i == nameCache.end()) {

Completed in 90 milliseconds

<<111213141516