Lines Matching refs:lo
93 lo = cc // C clear Unsigned lower.
106 case lo:
109 return lo;
488 // Extract a bit field <hi:lo> from the instruction bits and return it in the
490 inline int Bits(int hi, int lo) const {
491 return (InstructionBits() >> lo) & ((2 << (hi - lo)) - 1);
494 // Read a bit field <hi:lo>, leaving its position unchanged in the result.
495 inline int BitField(int hi, int lo) const {
496 return InstructionBits() & (((2 << (hi - lo)) - 1) << lo);
507 // Extract a bit field <hi:lo> from the instruction bits and return it in the
509 static inline int Bits(Instr instr, int hi, int lo) {
510 return (instr >> lo) & ((2 << (hi - lo)) - 1);
513 // Read a bit field <hi:lo>, leaving its position unchanged in the result.
514 static inline int BitField(Instr instr, int hi, int lo) {
515 return instr & (((2 << (hi - lo)) - 1) << lo);