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

/gem5/src/systemc/tests/systemc/datatypes/int/reduce/test01/
H A Dtest01.cpp56 cout << a.xnor_reduce() << endl;
65 cout << a( 7, 0 ).xnor_reduce() << endl;
74 cout << ( a( 7, 0 ), a( 15, 8 ) ).xnor_reduce() << endl;
85 cout << b.xnor_reduce() << endl;
94 cout << b( 7, 0 ).xnor_reduce() << endl;
103 cout << ( b( 7, 0 ), b( 15, 8 ) ).xnor_reduce() << endl;
/gem5/src/systemc/tests/systemc/datatypes/int/reduce/test02/
H A Dtest02.cpp56 cout << xnor_reduce( a ) << endl;
65 cout << xnor_reduce( a( 7, 0 ) ) << endl;
74 cout << xnor_reduce( ( a( 7, 0 ), a( 15, 8 ) ) ) << endl;
85 cout << xnor_reduce( b ) << endl;
94 cout << xnor_reduce( b( 7, 0 ) ) << endl;
103 cout << xnor_reduce( ( b( 7, 0 ), b( 15, 8 ) ) ) << endl;
/gem5/src/systemc/tests/systemc/datatypes/int/reduce/test03/
H A Dtest03.cpp56 cout << a.xnor_reduce() << endl;
65 cout << a( 7, 0 ).xnor_reduce() << endl;
74 cout << ( a( 7, 0 ), a( 15, 8 ) ).xnor_reduce() << endl;
85 cout << b.xnor_reduce() << endl;
94 cout << b( 7, 0 ).xnor_reduce() << endl;
103 cout << ( b( 7, 0 ), b( 15, 8 ) ).xnor_reduce() << endl;
/gem5/src/systemc/tests/systemc/misc/synth/reduce/
H A Dreduce.cpp49 r = (r << 1) | x.xnor_reduce();
56 r = (r << 1) | xnor_reduce(x);
/gem5/ext/systemc/src/sysc/datatypes/misc/
H A Dsc_concatref.h425 bool xnor_reduce() const function in class:sc_dt::sc_concatref
426 { return value().xnor_reduce(); }
502 xnor_reduce( const sc_concatref& a ) function in namespace:sc_dt
504 return a.xnor_reduce();
/gem5/src/systemc/ext/dt/misc/
H A Dsc_concatref.hh416 bool xnor_reduce() const { return value().xnor_reduce(); } function in class:sc_dt::sc_concatref
458 inline bool xnor_reduce(const sc_concatref &a) { return a.xnor_reduce(); } function in namespace:sc_dt
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_int_base.h392 bool xnor_reduce() const function in class:sc_dt::sc_int_subref_r
809 bool xnor_reduce() const function in class:sc_dt::sc_int_base
1171 xnor_reduce( const sc_int_subref_r& a ) function in namespace:sc_dt
1173 return a.xnor_reduce();
1354 xnor_reduce( const sc_int_base& a ) function in namespace:sc_dt
1356 return a.xnor_reduce();
H A Dsc_uint_base.h376 bool xnor_reduce() const function in class:sc_dt::sc_uint_subref_r
789 bool xnor_reduce() const function in class:sc_dt::sc_uint_base
1141 xnor_reduce( const sc_uint_subref_r& a ) function in namespace:sc_dt
1143 return a.xnor_reduce();
1324 xnor_reduce( const sc_uint_base& a ) function in namespace:sc_dt
1326 return a.xnor_reduce();
H A Dsc_signed.h974 bool xnor_reduce() const;
1346 bool xnor_reduce() const function in class:sc_dt::sc_signed
2288 inline bool sc_signed_subref_r::xnor_reduce() const function in class:sc_dt::sc_signed_subref_r
H A Dsc_unsigned.h879 bool xnor_reduce() const;
1246 bool xnor_reduce() const function in class:sc_dt::sc_unsigned
2099 inline bool sc_unsigned_subref_r::xnor_reduce() const function in class:sc_dt::sc_unsigned_subref_r
/gem5/src/systemc/ext/dt/int/
H A Dsc_int_base.hh346 bool xnor_reduce() const { return !xor_reduce(); } function in class:sc_dt::sc_int_subref_r
902 bool xnor_reduce() const { return !xor_reduce(); } function in class:sc_dt::sc_int_base
1198 xnor_reduce(const sc_int_subref_r &a) function in namespace:sc_dt
1200 return a.xnor_reduce();
1363 xnor_reduce(const sc_int_base &a) function in namespace:sc_dt
1365 return a.xnor_reduce();
H A Dsc_uint_base.hh328 bool xnor_reduce() const { return !xor_reduce(); } function in class:sc_dt::sc_uint_subref_r
827 bool xnor_reduce() const { return !xor_reduce(); } function in class:sc_dt::sc_uint_base
1088 xnor_reduce(const sc_uint_subref_r &a) function in namespace:sc_dt
1090 return a.xnor_reduce();
1237 xnor_reduce(const sc_uint_base &a) function in namespace:sc_dt
1239 return a.xnor_reduce();
H A Dsc_signed.hh884 bool xnor_reduce() const;
1232 bool xnor_reduce() const { return !xor_reduce(); } function in class:sc_dt::sc_signed
2419 sc_signed_subref_r::xnor_reduce() const function in class:sc_dt::sc_signed_subref_r
H A Dsc_unsigned.hh793 bool xnor_reduce() const;
1136 bool xnor_reduce() const { return !xor_reduce(); } function in class:sc_dt::sc_unsigned
2118 inline bool sc_unsigned_subref_r::xnor_reduce() const { return !xor_reduce(); } function in class:sc_dt::sc_unsigned_subref_r
/gem5/src/systemc/tests/include/specialized_signals/
H A Dscx_signal_int.h917 inline bool xnor_reduce() const function in class:sc_core::sc_in
918 { return (*this)->read().xnor_reduce(); }
1175 inline bool xnor_reduce() const function in class:sc_core::sc_inout
1176 { return (*this)->read().xnor_reduce(); }
H A Dscx_signal_uint.h973 inline bool xnor_reduce() const function in class:sc_core::sc_in
974 { return (*this)->read().xnor_reduce(); }
1233 inline bool xnor_reduce() const function in class:sc_core::sc_inout
1234 { return (*this)->read().xnor_reduce(); }
H A Dscx_signal_signed.h1099 inline bool xnor_reduce() const function in class:sc_core::sc_in
1100 { return (*this)->read().xnor_reduce(); }
1357 inline bool xnor_reduce() const function in class:sc_core::sc_inout
1358 { return (*this)->read().xnor_reduce(); }
H A Dscx_signal_unsigned.h1095 inline bool xnor_reduce() const function in class:sc_core::sc_in
1096 { return (*this)->read().xnor_reduce(); }
1353 inline bool xnor_reduce() const function in class:sc_core::sc_inout
1354 { return (*this)->read().xnor_reduce(); }
/gem5/src/systemc/ext/dt/bit/
H A Dsc_proxy.hh401 xnor_reduce() const function in class:sc_dt::sc_proxy
1370 xnor_reduce(const sc_proxy<X> &a) function in namespace:sc_dt
1372 return a.xnor_reduce();
/gem5/ext/systemc/src/
H A Dsystemc.h321 using sc_dt::xnor_reduce;
/gem5/ext/systemc/src/sysc/datatypes/bit/
H A Dsc_proxy.h458 sc_logic_value_t xnor_reduce() const function in class:sc_dt::sc_proxy
1580 xnor_reduce( const sc_proxy<X>& a ) function in namespace:sc_dt
1582 return a.xnor_reduce();
/gem5/ext/systemc/src/sysc/datatypes/fx/
H A Dsc_fxnum.h341 bool xnor_reduce() const;
504 bool xnor_reduce() const;
2060 DEFN_RED_FNC(xnor_reduce)
2411 DEFN_RED_FNC(xnor_reduce)
/gem5/src/systemc/ext/dt/fx/
H A Dsc_fxnum.hh304 bool xnor_reduce() const;
439 bool xnor_reduce() const;
1764 DEFN_RED_FNC(xnor_reduce)
2058 DEFN_RED_FNC(xnor_reduce)

Completed in 127 milliseconds