Home | History | Annotate | Download | only in ppc

Lines Matching refs:lo_word

1742     int lo_word = static_cast<int>(hi_32 & 0xffff);
1744 ori(dst, dst, Operand(lo_word));
1747 lo_word = static_cast<int>(lo_32 & 0xffff);
1749 ori(dst, dst, Operand(lo_word));
1752 int lo_word = static_cast<int>(value & 0xffff);
1754 ori(dst, dst, Operand(lo_word));
1762 int lo_word = static_cast<int>(value & 0xffff);
1764 ori(dst, dst, Operand(lo_word));
1775 int lo_word = static_cast<int>(value & 0xffff);
1776 if (lo_word & 0x8000) hi_word++;
1778 addic(dst, dst, Operand(SIGN_EXT_IMM16(lo_word)));