Searched refs:low (Results 1 - 16 of 16) 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 << "):"\
115 for ( size_t low = 0; low < 64; low++ )
117 for ( size_t high = low; high < 64; high++ )
130 for ( size_t low = 0; low < 64; low
[all...]
/gem5/ext/systemc/src/sysc/tracing/
H A Dsc_trace.cpp143 void double_to_special_int64(double in, unsigned* high, unsigned* low) argument
151 if(rest < 0) *low = 0;
152 else *low = (unsigned)rest;
H A Dsc_trace_file_base.h122 void double_to_special_int64( double in, unsigned* high, unsigned* low );
/gem5/src/base/
H A Dbitunion.test.cc75 Bitfield<7, 4> low; member in class:__anon104::SplitField
80 Bitfield<3, 0> low; member in class:__anon104::SplitField
89 out.low = in.low;
99 in.low = out.low;
/gem5/src/arch/x86/
H A Dinterrupts.cc340 InterruptCommandRegLow low = regs[APIC_INTERRUPT_COMMAND_LOW]; local
342 low.deliveryStatus = 0;
343 regs[APIC_INTERRUPT_COMMAND_LOW] = low;
473 InterruptCommandRegLow low = regs[APIC_INTERRUPT_COMMAND_LOW]; local
475 if (low.deliveryStatus) {
476 newVal = low;
479 low = val;
483 message.vector = low.vector;
484 message.deliveryMode = low.deliveryMode;
485 message.destMode = low
[all...]
H A Dprocess.cc333 uint64_t low; member in struct:TSSDesc
519 uint64_t low; member in struct:__anon16
/gem5/src/systemc/tests/include/
H A DSimpleBusLT.h119 bool limitRange(unsigned int portId, sc_dt::uint64& low, sc_dt::uint64& high) argument
124 if (low > addressMask) {
129 low += addressOffset;
H A DSimpleBusAT.h274 bool limitRange(unsigned int portId, sc_dt::uint64& low, sc_dt::uint64& high) argument
279 if (low > addressMask) {
284 low += addressOffset;
/gem5/ext/systemc/src/sysc/datatypes/fx/
H A Dsc_fxnum.cpp473 double low, high; local
478 low = - high;
480 low = - full_circle / 2.0;
484 low = 0.0;
490 bool under = ( val < low );
521 val += low;
534 val = low;
544 val = low;
598 val += low;
604 val = low;
[all...]
/gem5/src/systemc/dt/fx/
H A Dsc_fxnum.cc434 double low, high; local
438 low = - high;
440 low = - full_circle / 2.0;
442 low = 0.0;
448 bool under = (val < low);
474 val += low;
484 val = low;
494 val = low;
543 val += low;
549 val = low;
[all...]
/gem5/src/dev/arm/
H A Dgic_v3_its.hh168 Bitfield<31, 0> low; variable
176 Bitfield<31, 0> low; variable
200 Bitfield<31, 0> low; variable
H A Dgic_v3_its.cc917 gitsCbaser.low = pkt->getLE<uint32_t>();
939 gitsCwriter.low = pkt->getLE<uint32_t>();
/gem5/src/systemc/tests/tlm/multi_sockets/
H A DMultiSocketSimpleSwitchAT.h111 ,sc_dt::uint64 low
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 argument
815 return bitsToFp((uint64_t)low | ((uint64_t)high << 32), junk);
/gem5/src/base/stats/
H A Dtext.cc499 Counter low = i * data.bucket_size + data.min; local
500 Counter high = ::min(low + data.bucket_size - 1.0, data.max);
501 namestr << low; local
502 if (low < high)
/gem5/ext/googletest/googlemock/test/
H A Dgmock-generated-matchers_test.cc942 MATCHER_P2(IsNotInClosedRange, low, hi, "") { return arg < low || arg > hi; }

Completed in 43 milliseconds