Searched refs:increment (Results 1 - 12 of 12) sorted by relevance

/gem5/src/systemc/tests/systemc/misc/cae_test/general/arith/addition/increment/
H A Dincrement.h22 increment.h --
40 SC_MODULE( increment )
42 SC_HAS_PROCESS( increment );
64 increment ( function
H A Dincrement.cpp22 increment.cpp --
38 #include "increment.h"
40 void increment::entry(){
H A Dmain.cpp40 #include "increment.h"
59 increment increment1 ( "process_body",
/gem5/ext/systemc/src/sysc/utils/
H A Dsc_mempool.cpp33 // of sizes <increment>, 2 * <increment>, ..., <num_pools> *
34 // <increment>. When a memory request of <k> bytes is made through
35 // the memory pool, the smallest pool <j> such that <j> * <increment>
36 // >= <k> is used. The default values of <increment> and <num_pools>
211 int increment; member in class:sc_core::sc_mempool_int
224 allocators(0), num_pools(0), increment(0), max_size(0)
229 increment = incr;
250 int which_allocator = cell_size_to_allocator[(sz - 1) / increment + 1];
258 int which_allocator = cell_size_to_allocator[(sz - 1) / increment
[all...]
/gem5/ext/systemc/src/tlm_utils/
H A Dinstance_specific_extensions.h56 inline unsigned int max_num_ispex_accessors(bool increment=false) argument
59 if (increment) ++max_num;
64 inline unsigned int max_num_ispex(bool increment=false) argument
67 if (increment) ++max_num;
197 // to increment and decrement the use_count
/gem5/src/systemc/tlm_utils/
H A Dinstance_specific_extensions.cc93 max_num_ispex_accessors(bool increment=false) argument
96 if (increment)
/gem5/ext/systemc/src/tlm_core/tlm_2/tlm_generic_payload/
H A Dtlm_gp.h48 inline unsigned int max_num_extensions(bool increment=false) argument
51 if (increment) ++max_num;
463 /* the address increment between each beat is greater */
/gem5/src/arch/arm/
H A Dpmu.hh316 * notify an event increment of val units, all the attached counters'
319 * @param the quantity by which to increment the attached counter
322 virtual void increment(const uint64_t val);
395 * write on the sw increment register inducing an increment of the
398 * @param the bitfield selecting the counters to increment.
611 /** The event that implements the software increment **/
H A Dpmu.cc110 DPRINTF(PMUVerbose, "PMU: Adding SW increment event with id '0x%x'\n", id);
115 "Trying to add a software increment event with multiple"
456 PMU::PMUEvent::increment(const uint64_t val) function in class:ArmISA::PMU::PMUEvent
476 parentEvent->increment(val);
/gem5/ext/pybind11/include/pybind11/
H A Dpytypes.h621 It &operator++() { Policy::increment(); return *this; }
622 It operator++(int) { auto copy = *this; Policy::increment(); return copy; }
662 void increment() { ++ptr; } function in class:sequence_fast_readonly
683 void increment() { ++index; } function in class:sequence_slow_readwrite
703 dict_readonly(handle obj, ssize_t pos) : obj(obj), pos(pos) { increment(); }
706 void increment() { if (!PyDict_Next(obj.ptr(), &pos, &key, &value)) { pos = -1; } } function in class:dict_readonly
818 state of the Python iterable. This also applies to the post-increment
H A Dnumpy.h1298 void increment(size_type dim) {
1377 iter.increment(dim);
1563 // appropriate pointer in `params`; as we iterate, we'll increment each pointer by its size
1564 // (except for singletons, which get an increment of 0).
/gem5/util/minorview/
H A Dmodel.py879 def skip_same_char(start, increment):
884 hunt += increment

Completed in 34 milliseconds