Home | History | Annotate | Download | only in ppc

Lines Matching full:itarget

681     uintptr_t itarget = reinterpret_cast<uintptr_t>(target);
684 instr5 |= itarget & kImm16Mask;
685 itarget = itarget >> 16;
688 instr4 |= itarget & kImm16Mask;
689 itarget = itarget >> 16;
692 instr2 |= itarget & kImm16Mask;
693 itarget = itarget >> 16;
696 instr1 |= itarget & kImm16Mask;
697 itarget = itarget >> 16;
708 uint32_t itarget = reinterpret_cast<uint32_t>(target);
709 int lo_word = itarget & kImm16Mask;
710 int hi_word = itarget >> 16;