Lines Matching refs:branch_offset
641 int branch_offset(Label* L, bool jump_elimination_allowed);
739 void b(int branch_offset, Condition cond = al);
740 void bl(int branch_offset, Condition cond = al);
741 void blx(int branch_offset); // v5 and above
747 b(branch_offset(L, cond == al), cond);
749 void b(Condition cond, Label* L) { b(branch_offset(L, cond == al), cond); }
750 void bl(Label* L, Condition cond = al) { bl(branch_offset(L, false), cond); }
751 void bl(Condition cond, Label* L) { bl(branch_offset(L, false), cond); }
752 void blx(Label* L) { blx(branch_offset(L, false)); } // v5 and above