Searched refs:last (Results 26 - 37 of 37) sorted by relevance

12

/gem5/ext/testlib/
H A Dhelper.py225 def pop(self, last=True):
228 key = self.end[1][0] if last else self.end[2][0]
/gem5/util/
H A Dfind_copyrights.py128 last = None
/gem5/src/gpu-compute/
H A Dcompute_unit.cc296 // is this the last wavefront in the workgroup
1135 Addr last = 0; local
1139 last = computeUnit->lastVaddrCU[mp_index];
1142 last = computeUnit->lastVaddrSimd[simdId][mp_index];
1145 last = computeUnit->lastVaddrWF[simdId][wfSlotId][mp_index];
1150 DPRINTF(GPUPrefetch, "CU[%d][%d][%d][%d]: %#x was last\n",
1151 computeUnit->cu_id, simdId, wfSlotId, mp_index, last);
1153 int stride = last ? (roundDown(vaddr, TheISA::PageBytes) -
1154 roundDown(last, TheISA::PageBytes)) >> TheISA::PageShift
/gem5/src/dev/arm/
H A Dgic_v3_redistributor.cc164 int last = cpuId == (gic->getSystem()->numContexts() - 1); local
166 (1 << 5) | (last << 4) | (1 << 3) | (1 << 0);
/gem5/src/base/
H A Dstatistics.hh564 /** The tick of the last reset */
568 /** The tick that current last changed. */
569 mutable Tick last;
579 : current(0), lastReset(0), total(0), last(0)
583 * Set the current count to the one provided, update the total and last
590 total += current * (curTick() - last);
591 last = curTick();
620 assert(last == curTick());
635 total += current * (curTick() - last);
636 last
[all...]
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h3119 ElementsAreMatcherImpl(InputIter first, InputIter last) { argument
3120 while (first != last) {
3359 UnorderedElementsAreMatcherImpl(InputIter first, InputIter last) { argument
3360 for (; first != last; ++first) {
3507 UnorderedElementsAreArrayMatcher(Iter first, Iter last) argument
3508 : matchers_(first, last) {}
3528 ElementsAreArrayMatcher(Iter first, Iter last) : matchers_(first, last) {} argument
3628 // ElementsAreArray(first, last)
3646 ElementsAreArray(Iter first, Iter last) { argument
3688 UnorderedElementsAreArray(Iter first, Iter last) argument
[all...]
/gem5/src/sim/
H A Deventq.hh174 /// If we want to exit on this cycle, it's the very last thing
207 static Event *removeItem(Event *event, Event *last);
/gem5/ext/googletest/googlemock/scripts/generator/cpp/
H A Dast.py1120 # The heuristic used is to pull the last name as the class name.
1123 # example above, punt and assume the last bit is the class name.
1136 # terminating condition beyond the last name.
1156 # The class name is the last name.
1437 tokens, last = self._GetVarTokensUpTo(tokenize.SYNTAX, '(', ';')
1438 tokens.append(last)
1440 if last.name == '(':
/gem5/ext/pybind11/include/pybind11/
H A Dpybind11.h1673 iterator make_iterator(Iterator first, Sentinel last, Extra &&... extra) { argument
1692 return cast(state{first, last, true});
1702 iterator make_key_iterator(Iterator first, Sentinel last, Extra &&... extra) { argument
1721 return cast(state{first, last, true});
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_nbcommon.inc2740 // Take care of the last digit.
2888 // Take care of the last digit.
/gem5/src/cpu/kvm/
H A Dbase.cc1198 while (mmioRing->first != mmioRing->last) {
/gem5/ext/googletest/googlemock/test/
H A Dgmock-matchers_test.cc4503 Streamlike(InIter first, InIter last) : remainder_(first, last) {} argument

Completed in 89 milliseconds

12