Home | History | Annotate | Download | only in mips

Lines Matching defs:offset_high

4559     //   aui   AT, base, offset_high
4563 // aui AT, base, offset_high
4567 int16_t offset_high = High16Bits(offset);
4569 offset_high += (offset_low < 0) ? 1 : 0; // Account for offset sign extension in load/store.
4570 Aui(AT, base, offset_high);