Searched refs:orig (Results 1 - 4 of 4) sorted by relevance

/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_process_handle.h85 inline sc_process_handle( const sc_process_handle& orig );
211 // orig = sc_process_handle object instance to be copied from.
213 inline sc_process_handle::sc_process_handle( const sc_process_handle& orig ) :
214 m_target_p(orig.m_target_p)
227 // targets of 'orig' and this object instance. We don't need to increment
228 // the reference count for our new target since that was done when 'orig'
230 // 'orig' is deleted.
231 // orig = sc_process_handle object instance to be copied from.
235 sc_process_handle::operator = ( sc_process_handle orig )
237 swap( orig );
[all...]
/gem5/src/base/
H A Dtrie.hh142 * @param orig The original mask to extend.
146 extendMask(Key orig) argument
148 // Just in case orig was 0.
150 return orig | (orig >> 1) | msb;
/gem5/src/systemc/utils/
H A Dvcd.cc78 stripLeadingBits(const char *orig) argument
80 const char first = orig[0];
83 return orig;
85 const char *res = orig;
/gem5/ext/pybind11/tests/
H A Dtest_eigen.py376 orig = np.array([[1., 2, 3], [4, 5, 6], [7, 8, 9]])
377 zr = np.array(orig)
378 zc = np.array(orig, order='F')
398 assert np.all(zr == orig)
401 assert np.all(zc == orig)

Completed in 16 milliseconds