Searched refs:Unsigned (Results 26 - 41 of 41) sorted by relevance

12

/gem5/src/mem/qos/
H A DQoSMemCtrl.py54 qos_priorities = Param.Unsigned(1, "QoS priorities")
/gem5/src/mem/ruby/network/
H A DNetwork.py42 number_of_virtual_networks = Param.Unsigned("Number of virtual networks "
/gem5/src/cpu/testers/memtest/
H A DMemTest.py53 size = Param.Unsigned(65536, "Size of memory region to use (bytes)")
/gem5/src/mem/ruby/system/
H A DRubySystem.py55 number_of_virtual_networks = Param.Unsigned("")
/gem5/src/dev/
H A DDevice.py89 sid = Param.Unsigned(0,
92 ssid = Param.Unsigned(0,
/gem5/src/cpu/
H A DTimingExpr.py73 # index = Param.Unsigned("index into inst src regs")
74 index = Param.Unsigned("index into inst src regs")
109 index = Param.Unsigned("expression index")
120 'timingExprUCeilDiv', # Unsigned divide rounding up
H A DBaseCPU.py154 socket_id = Param.Unsigned(0, "Physical Socket identifier")
155 numThreads = Param.Unsigned(1, "number of HW thread contexts")
/gem5/src/base/
H A Dbitunion.hh162 class Unsigned class in namespace:BitfieldBackend
210 using Bitfield = BitfieldType<Unsigned<Storage, first, last> >;
213 BitfieldROType<Unsigned<Storage, first, last> >;
216 BitfieldWOType<Unsigned<Storage, first, last> >;
/gem5/src/arch/arm/
H A DArmTLB.py52 num_squash_per_cycle = Param.Unsigned(2,
/gem5/src/mem/
H A DXBar.py75 width = Param.Unsigned("Datapath width per port (bytes)")
/gem5/src/sim/
H A DSystem.py84 cache_line_size = Param.Unsigned(64, "Cache line size in bytes")
/gem5/src/dev/arm/
H A DGic.py183 pio_size = Param.Unsigned(0x20000, "Gicv3Its pio size")
221 cpu_max = Param.Unsigned(256,
H A DRealView.py122 int_base = Param.Unsigned("PCI interrupt base")
123 int_count = Param.Unsigned("Maximum number of interrupts used by this host")
491 pixel_chunk = Param.Unsigned(32, "Number of pixels to handle in one batch")
/gem5/ext/pybind11/include/pybind11/
H A Dpytypes.h1044 // Converts a value to the given unsigned type. If an error occurs, you get back (Unsigned) -1;
1045 // otherwise you get back the unsigned long or unsigned long long value cast to (Unsigned).
1048 template <typename Unsigned>
1049 Unsigned as_unsigned(PyObject *o) {
1050 if (sizeof(Unsigned) <= sizeof(unsigned long)
1056 return v == (unsigned long) -1 && PyErr_Occurred() ? (Unsigned) -1 : (Unsigned) v;
1060 return v == (unsigned long long) -1 && PyErr_Occurred() ? (Unsigned) -1 : (Unsigned) v;
/gem5/ext/googletest/googletest/test/
H A Dgtest_output_test_.cc823 INSTANTIATE_TYPED_TEST_CASE_P(Unsigned, TypedTestP, UnsignedTypes);
/gem5/src/python/m5/
H A Dparams.py628 class Unsigned(CheckedInt): cxx_type = 'unsigned'; size = 32; unsigned = True class in inherits:CheckedInt
2179 'Int', 'Unsigned', 'Int8', 'UInt8', 'Int16', 'UInt16',

Completed in 43 milliseconds

12