Searched refs:count (Results 151 - 175 of 207) sorted by relevance

123456789

/gem5/src/dev/net/
H A Dsinic.cc1277 int count; local
1342 for (count = 0, i = rxList.begin(), end = rxList.end(); i != end; ++i)
1343 paramOut(cp, csprintf("rxList%d", count++), *i);
1344 int rxListSize = count;
1347 for (count = 0, i = rxBusy.begin(), end = rxBusy.end(); i != end; ++i)
1348 paramOut(cp, csprintf("rxBusy%d", count++), *i);
1349 int rxBusySize = count;
1352 for (count = 0, i = txList.begin(), end = txList.end(); i != end; ++i)
1353 paramOut(cp, csprintf("txList%d", count++), *i);
1354 int txListSize = count;
[all...]
/gem5/ext/systemc/src/tlm_utils/
H A Dtlm2_base_protocol_checker.h70 All checkers decrement a single global count, because having some checkers running and
75 The DMI and debug checks are unaffected by the num_checks count (because they are cheap)
93 nb_transport: reference count must be non-zero
104 Debug byte count must be less than data_length
185 // Access methods for num_checks count
263 unsigned int count; local
264 count = initiator_socket->transport_dbg( trans );
266 transport_dbg_post_checks( trans, count );
267 return count;
305 void transport_dbg_post_checks( tlm::tlm_generic_payload& trans, unsigned int count );
[all...]
/gem5/src/cpu/o3/
H A Dinst_queue_impl.hh401 count[tid] = 0;
534 return maxEntries[tid] - count[tid];
619 count[new_inst->threadNumber]++;
666 count[new_inst->threadNumber]++;
913 count[tid]--;
1141 count[tid]--;
1337 count[squashed_inst->threadNumber]--;
1558 // still count towards the total instructions.
1600 // still count towards the total instructions.
/gem5/ext/googletest/googlemock/scripts/generator/cpp/
H A Dast.py464 count = 1
470 count += 1
472 count -= 1
473 if count == 0:
866 count = 1
874 count -= 1
875 if count == 0:
878 count += 1
885 count = 1
890 count
[all...]
/gem5/src/gpu-compute/
H A Dtlb_coalescer.cc281 if (coalescer->coalescerFIFO.count(tick_index)) {
351 int map_count = coalescer->issuedTranslationsTable.count(virt_page_addr);
439 issuedTranslationsTable.count(virt_page_addr);
/gem5/src/mem/cache/prefetch/
H A Dqueued.cc256 unsigned count = 0; local
258 while (it != pfqMissingTranslation.end() && count < max) {
264 count += 1;
/gem5/ext/libelf/
H A D_libelf.h78 int e_activations; /* activation count */
174 size_t count);
/gem5/src/base/loader/
H A Dcoff_sym.h155 coff_int csym; /* count file's of symbols */
157 coff_int cline; /* count of file's line symbols */
159 coff_int copt; /* count of file's optimization entries */
161 coff_int cpd; /* count of procedures for this file */
163 coff_int caux; /* count of file's auxiliary entries */
165 coff_int crfd; /* count file indirect entries */
359 coff_int count; /* count of ranges for variant arm */ member in union:__anon21
H A Delf_object.cc430 int count = shdr.sh_size / shdr.sh_entsize; local
431 DPRINTF(Loader, "Found Symbol Table, %d symbols present\n", count);
434 for (int i = 0; i < count; ++i) {
/gem5/src/mem/ruby/system/
H A DSequencer.cc200 if (m_readRequestTable.count(line_addr) > 0) {
219 if (m_writeRequestTable.count(line_addr) > 0) {
364 assert(m_writeRequestTable.count(makeLineAddress(address)));
419 assert(m_readRequestTable.count(makeLineAddress(address)));
/gem5/src/dev/x86/
H A DSouthBridge.py105 if dma_ports.count(self.ide.dma) == 0:
/gem5/src/arch/sparc/
H A Dfaults.hh67 FaultStat count; member in struct:SparcISA::SparcFaultBase::FaultVals
91 FaultStat & countStat() { return vals.count; }
/gem5/src/mem/
H A Dsnoop_filter.cc103 if (interested.count() == 1)
213 if (interested.count() == 1)
/gem5/ext/googletest/googlemock/include/gmock/
H A Dgmock-matchers.h162 // what the actual element count is, regardless of the match result,
299 // to hold the reference count, while the latter tracks all
3127 if (count() == 0) {
3129 } else if (count() == 1) {
3133 *os << "has " << Elements(count()) << " where\n";
3134 for (size_t i = 0; i != count(); ++i) {
3137 if (i + 1 < count()) {
3146 if (count() == 0) {
3151 *os << "doesn't have " << Elements(count()) << ", or\n";
3152 for (size_t i = 0; i != count();
3242 Elements(size_t count) argument
3246 size_t count() const { return matchers_.size(); } function in class:testing::internal::ElementsAreMatcherImpl
3652 ElementsAreArray( const T* pointer, size_t count) argument
3695 UnorderedElementsAreArray(const T* pointer, size_t count) argument
[all...]
/gem5/ext/googletest/googletest/include/gtest/internal/
H A Dgtest-internal.h570 return registered_tests_.count(test_name) > 0;
721 // count against the number of frames to be included.
1042 NativeArray(const Element* array, size_t count, RelationToSourceReference) { argument
1043 InitRef(array, count);
1047 NativeArray(const Element* array, size_t count, RelationToSourceCopy) { argument
1048 InitCopy(array, count);
/gem5/src/systemc/utils/
H A Dvcd.cc683 uint64_t count = 0; local
685 count++;
688 while (count >> bits)
/gem5/ext/googletest/googlemock/src/
H A Dgmock-spec-builders.cc134 // If *it is satisfied and has a call count of 0, some of its
169 // Checks the action count (i.e. the number of WillOnce() and
187 // count against it.
483 ss << "Actual function call count doesn't match "
651 return (g_uninteresting_call_reaction.count(mock_obj) == 0) ?
688 if (g_mock_object_registry.states().count(mock_obj) == 0) {
767 if (g_mock_object_registry.states().count(mock_obj) == 0) {
/gem5/ext/googletest/googletest/src/
H A Dgtest-internal-inl.h286 int count = 0; local
289 ++count;
291 return count;
427 // skip_count - the number of top frames to be skipped; doesn't count
616 // count against the number of frames to be included.
/gem5/src/cpu/checker/
H A Dcpu_impl.hh353 // keep an instruction count
412 int count = 0; local
416 count++;
418 if (count > 1) {
/gem5/src/arch/arm/insts/
H A Dmacromem.cc1448 int count = (single ? offset : (offset / 2)); local
1449 if (count == 0 || count > NumFloatV7ArchRegs)
1451 if (count == 0) {
1455 if (count > NumFloatV7ArchRegs)
1456 count = NumFloatV7ArchRegs;
1458 numMicroops = count * (single ? 1 : 2) + (writeback ? 1 : 0);
1467 for (int j = 0; j < count; j++) {
/gem5/ext/ply/ply/
H A Dcpp.py26 t.lexer.lineno += t.value.count("\n")
48 t.lexer.lineno += t.value.count("\n")
54 t.lexer.lineno += t.value.count("\n")
60 t.lexer.lineno += t.value.count("\n")
/gem5/src/mem/ruby/network/simple/
H A DPerfectSwitch.cc164 // assert(msg_dsts.count() > 0);
218 assert(msg_dsts.count() == 0);
/gem5/src/cpu/testers/garnet_synthetic_traffic/
H A DGarnetSyntheticTraffic.cc102 if (trafficStringToEnum.count(trafficType) == 0) {
/gem5/src/cpu/pred/
H A Dmultiperspective_perceptron.hh354 /** runtime values and data used to count the size in bits */
907 int count = 0; variable
911 count += 1;
912 if (count == sdfrac) {
914 count = 0;
/gem5/ext/googletest/googlemock/scripts/
H A Dupload.py796 count = 0
799 count += 1
801 if not count:
1307 if "@" in reviewer and not reviewer.split("@")[1].count(".") == 1:
1312 if "@" in cc and not cc.split("@")[1].count(".") == 1:

Completed in 93 milliseconds

123456789