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

/gem5/src/mem/ruby/common/
H A DAddress.cc34 bitSelect(Addr addr, unsigned int small, unsigned int big) argument
36 assert(big >= small);
39 return (addr >> small);
44 return (partial >> small);
49 bitRemove(Addr addr, unsigned int small, unsigned int big) argument
51 assert(big >= small);
53 if (small >= ADDRESS_WIDTH - 1) {
56 Addr mask = (Addr)~0 >> small;
58 } else if (small == 0) {
62 Addr mask = ~((Addr)~0 << small);
[all...]
H A DAddress.hh41 Addr bitSelect(Addr addr, unsigned int small, unsigned int big);
42 Addr bitRemove(Addr addr, unsigned int small, unsigned int big);
/gem5/ext/systemc/src/sysc/datatypes/int/
H A Dsc_nbfriends.inc31 the input numbers are small. The bitwise functions (and,
/gem5/src/systemc/dt/int/
H A Dsc_nbfriends.inc31 the input numbers are small. The bitwise functions (and,

Completed in 8 milliseconds