Lines Matching refs:x100
56 /* Absolute branch to 0x100 */
58 check(instr_is_branch_to_addr(iptr, 0x100));
77 /* Branch to self - 0x100, with link */
78 err = create_branch(&instr, iptr, addr - 0x100, BRANCH_SET_LINK);
80 check(instr_is_branch_to_addr(iptr, addr - 0x100));
82 /* Branch to self + 0x100, no link */
83 err = create_branch(&instr, iptr, addr + 0x100, 0);
85 check(instr_is_branch_to_addr(iptr, addr + 0x100));
145 /* Absolute conditional branch to 0x100 */
147 check(instr_is_branch_to_addr(iptr, 0x100));
169 /* Branch to self - 0x100 */
170 err = create_cond_branch(&instr, iptr, addr - 0x100, flags);
172 check(instr_is_branch_to_addr(iptr, addr - 0x100));
174 /* Branch to self + 0x100 */
175 err = create_cond_branch(&instr, iptr, addr + 0x100, flags);
177 check(instr_is_branch_to_addr(iptr, addr + 0x100));