Searched refs:int_type (Results 1 - 23 of 23) sorted by relevance

/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_int.h101 sc_int( int_type v )
189 sc_int<W>& operator = ( int_type v )
257 sc_int<W>& operator += ( int_type v )
260 sc_int<W>& operator -= ( int_type v )
263 sc_int<W>& operator *= ( int_type v )
266 sc_int<W>& operator /= ( int_type v )
269 sc_int<W>& operator %= ( int_type v )
275 sc_int<W>& operator &= ( int_type v )
278 sc_int<W>& operator |= ( int_type v )
281 sc_int<W>& operator ^= ( int_type
[all...]
H A Dsc_int_base.h472 sc_int_subref& operator = ( int_type v );
488 { return operator = ( (int_type) a ); }
491 { return operator = ( (int_type) a ); }
494 { return operator = ( (int_type) a ); }
497 { return operator = ( (int_type) a ); }
500 { return operator = ( (int_type) a ); }
503 { return operator = ( (int_type) a ); }
580 sc_int_base( int_type v, int w )
616 sc_int_base& operator = ( int_type v )
660 { m_val = (int_type)
[all...]
H A Dsc_nbdefs.h235 typedef int64 int_type; typedef in namespace:sc_dt
243 typedef int int_type; typedef in namespace:sc_dt
H A Dsc_int_base.cpp117 *this = aa = (src < 0) ? (int_type)-1 : 0;
270 sc_int_subref::operator = ( int_type v )
272 int_type val = m_obj_p->m_val;
325 *this = (src < 0) ? (int_type)-1 : 0;
400 int_type limit = (int_type) 1 << ( m_len - 1 );
587 return ( m_val == int_type( -1 ) );
593 return ( m_val != int_type( 0 ) );
720 *this = (src < 0) ? (int_type)-1 : 0;
H A Dsc_uint_base.cpp116 *this = aa = (src < 0) ? (int_type)-1 : 0;
297 *this = aa = (src < 0) ? (int_type)-1 : 0;
697 *this = (src < 0) ? (int_type)-1 : 0;
H A Dsc_unsigned.cpp401 *this = (src<0) ? (int_type)-1 : 0;
H A Dsc_signed.cpp409 *this = (src<0) ? (int_type)-1 : 0;
/gem5/src/systemc/ext/dt/int/
H A Dsc_int.hh90 sc_int(int_type v) : sc_int_base(v, W) {}
169 operator = (int_type v)
291 operator += (int_type v)
297 operator -= (int_type v)
303 operator *= (int_type v)
309 operator /= (int_type v)
315 operator %= (int_type v)
323 operator &= (int_type v)
329 operator |= (int_type v)
335 operator ^= (int_type
[all...]
H A Dsc_int_base.hh406 sc_int_subref &operator = (int_type v);
433 return operator = ((int_type)a);
439 return operator = ((int_type)a);
445 return operator = ((int_type)a);
451 return operator = ((int_type)a);
457 return operator = ((int_type)a);
463 return operator = ((int_type)a);
551 sc_int_base(int_type v, int w) :
590 operator = (int_type v)
678 m_val = (int_type)
[all...]
H A Dsc_nbdefs.hh206 typedef int64 int_type; typedef in namespace:sc_dt
/gem5/src/dev/arm/
H A Dgic_v3.hh132 void deassertInt(uint32_t cpu, ArmISA::InterruptTypes int_type);
161 void postInt(uint32_t cpu, ArmISA::InterruptTypes int_type);
H A DGic.py65 def interruptCells(self, int_type, int_num, int_flag):
73 return [ int_type, int_num, int_flag ]
227 def interruptCells(self, int_type, int_num, int_flag):
236 prop[0] = int_type
H A Dgic_v3.cc205 Gicv3::postInt(uint32_t cpu, ArmISA::InterruptTypes int_type) argument
207 platform->intrctrl->post(cpu, int_type, 0);
211 Gicv3::deassertInt(uint32_t cpu, ArmISA::InterruptTypes int_type) argument
213 platform->intrctrl->clear(cpu, int_type, 0);
H A Dgic_v3_cpu_interface.cc2041 ArmISA::InterruptTypes int_type = intSignalType(hppi.group); local
2043 "posting int as %d!\n", int_type);
2044 int_type == ArmISA::INT_IRQ ? signal_IRQ = true : signal_FIQ = true;
/gem5/ext/iostream3/
H A Dzfstream.h112 virtual int_type
124 virtual int_type
125 overflow(int_type c = traits_type::eof());
151 // virtual int_type uflow();
152 // virtual int_type pbackfail(int_type c = traits_type::eof());
H A Dzfstream.cc182 gzfilebuf::int_type
213 gzfilebuf::int_type
214 gzfilebuf::overflow(int_type c)
/gem5/src/arch/arm/
H A Dinterrupts.cc51 ArmISA::Interrupts::takeInt(ThreadContext *tc, InterruptTypes int_type) const
71 switch(int_type) {
H A Dinterrupts.hh133 bool takeInt(ThreadContext *tc, InterruptTypes int_type) const;
/gem5/src/systemc/dt/int/
H A Dsc_int_base.cc124 *this = aa = (src < 0) ? (int_type)-1 : 0;
265 sc_int_subref::operator = (int_type v)
267 int_type val = m_obj_p->m_val;
321 *this = (src < 0) ? (int_type)-1 : 0;
393 int_type limit = (int_type)1 << (m_len - 1);
556 bool sc_int_base::and_reduce() const { return (m_val == int_type(-1)); }
557 bool sc_int_base::or_reduce() const { return (m_val != int_type(0)); }
680 *this = (src < 0) ? (int_type)-1 : 0;
H A Dsc_uint_base.cc125 *this = aa = (src < 0) ? (int_type)-1 : 0;
306 *this = aa = (src < 0) ? (int_type)-1 : 0;
680 *this = (src < 0) ? (int_type)-1 : 0;
H A Dsc_unsigned.cc373 *this = (src < 0) ? (int_type)-1 : 0;
H A Dsc_signed.cc370 *this = (src<0) ? (int_type)-1 : 0;
/gem5/src/systemc/tests/include/specialized_signals/
H A Dscx_signal_int.h368 sc_signal<sc_dt::sc_int<W> >& operator += (sc_dt::int_type);
369 sc_signal<sc_dt::sc_int<W> >& operator -= (sc_dt::int_type);
370 sc_signal<sc_dt::sc_int<W> >& operator *= (sc_dt::int_type);
371 sc_signal<sc_dt::sc_int<W> >& operator /= (sc_dt::int_type);
372 sc_signal<sc_dt::sc_int<W> >& operator %= (sc_dt::int_type);
373 sc_signal<sc_dt::sc_int<W> >& operator &= (sc_dt::int_type);
374 sc_signal<sc_dt::sc_int<W> >& operator |= (sc_dt::int_type);
375 sc_signal<sc_dt::sc_int<W> >& operator ^= (sc_dt::int_type);

Completed in 51 milliseconds