Searched refs:high (Results 1 - 21 of 21) sorted by relevance

/gem5/src/systemc/tests/systemc/datatypes/misc/concat/test12/
H A Dtest12.cpp45 expected = TARGET(high,low); \
46 result = (sc_uint<6>(0),TARGET(high,low)); \
50 cout << "Mismatch for " << #TARGET << "(" << high << "," << low << "):"\
117 for ( size_t high = low; high < 64; high++ )
132 for ( size_t high = low; high < 64; high++ )
147 for ( size_t high
[all...]
/gem5/ext/systemc/src/sysc/tracing/
H A Dsc_trace.cpp143 void double_to_special_int64(double in, unsigned* high, unsigned* low) argument
149 *high = (unsigned)(invar / 1e9);
150 double rest = invar - 1e9 * (*high);
H A Dsc_trace_file_base.h122 void double_to_special_int64( double in, unsigned* high, unsigned* low );
/gem5/ext/systemc/src/sysc/datatypes/fx/
H A Dsc_fxnum.cpp75 sc_fxnum_bitref::set( bool high )
77 m_num.set_bit( m_idx, high );
122 sc_fxnum_fast_bitref::set( bool high )
124 m_num.set_bit( m_idx, high );
473 double low, high; local
476 high = full_circle / 2.0 - resolution;
478 low = - high;
485 high = full_circle - resolution;
491 bool over = ( val > high );
507 if( val > high )
[all...]
H A Dsc_fxnum.h3638 sc_fxnum::set_bit( int i, bool high )
3640 if( high )
/gem5/src/systemc/dt/fx/
H A Dsc_fxnum.cc69 void sc_fxnum_bitref::set(bool high) { m_num.set_bit(m_idx, high); } argument
101 void sc_fxnum_fast_bitref::set(bool high) { m_num.set_bit(m_idx, high); } argument
434 double low, high; local
436 high = full_circle / 2.0 - resolution;
438 low = - high;
443 high = full_circle - resolution;
449 bool over = (val > high);
462 if (val > high)
742 set_bit(int i, bool high) argument
[all...]
/gem5/src/systemc/tests/include/
H A DSimpleBusLT.h119 bool limitRange(unsigned int portId, sc_dt::uint64& low, sc_dt::uint64& high) argument
130 if (high > addressMask) {
131 high = addressOffset + addressMask;
134 high += addressOffset;
H A DSimpleBusAT.h274 bool limitRange(unsigned int portId, sc_dt::uint64& low, sc_dt::uint64& high) argument
285 if (high > addressMask) {
286 high = addressOffset + addressMask;
289 high += addressOffset;
/gem5/src/base/
H A Dbitunion.test.cc74 Bitfield<15, 12> high; member in class:__anon104::SplitField
79 Bitfield<7, 4> high; member in class:__anon104::SplitField
88 out.high = in.high;
98 in.high = out.high;
/gem5/src/cpu/kvm/
H A Dvm.hh346 * @param high Line level (true for high, false for low)
348 void setIRQLine(uint32_t irq, bool high);
H A Dvm.cc502 KvmVM::setIRQLine(uint32_t irq, bool high) argument
507 kvm_level.level = high ? 1 : 0;
/gem5/src/arch/arm/kvm/
H A Dgic.hh53 * This class defines a high-level interface to the KVM in-kernel GIC
137 * @param high True to signal an interrupt, false to clear it.
139 void setIntState(unsigned type, unsigned vcpu, unsigned irq, bool high);
H A Dgic.cc99 bool high)
109 vm.setIRQLine(line, high);
98 setIntState(unsigned type, unsigned vcpu, unsigned irq, bool high) argument
/gem5/src/dev/arm/
H A Dgic_v3_its.hh167 Bitfield<63, 32> high; variable
175 Bitfield<63, 32> high; variable
199 Bitfield<63, 32> high; variable
H A Dgic_v3_its.cc840 value = gitsTyper.high;
848 value = gitsCbaser.high;
856 value = gitsCwriter.high;
864 value = gitsCreadr.high;
930 gitsCbaser.high = pkt->getLE<uint32_t>();
950 gitsCwriter.high = pkt->getLE<uint32_t>();
/gem5/src/systemc/tests/tlm/multi_sockets/
H A DMultiSocketSimpleSwitchAT.h112 ,sc_dt::uint64 high
118 m_addrMap.insert(low, high, m_target_count++);
/gem5/src/arch/arm/insts/
H A Dvfp.hh239 makeDouble(uint32_t low, uint32_t high) argument
242 return bitsToFp((uint64_t)low | ((uint64_t)high << 32), junk);
812 dbl(uint32_t low, uint32_t high) const
815 return bitsToFp((uint64_t)low | ((uint64_t)high << 32), junk);
/gem5/src/arch/x86/
H A Dinterrupts.cc480 InterruptCommandRegHigh high = regs[APIC_INTERRUPT_COMMAND_HIGH]; local
482 message.destination = high.destination;
H A Dprocess.cc334 uint64_t high; member in struct:TSSDesc
520 uint64_t high; member in struct:__anon16
/gem5/src/base/stats/
H A Dtext.cc500 Counter high = ::min(low + data.bucket_size - 1.0, data.max); local
502 if (low < high)
503 namestr << "-" << high; local
/gem5/src/systemc/ext/dt/fx/
H A Dsc_fxnum.hh3094 sc_fxnum::set_bit(int i, bool high) argument
3096 if (high)

Completed in 72 milliseconds