Searched refs:npairs (Results 1 – 7 of 7) sorted by relevance
129 int npairs = iter.s32bitAt(index += 4); in scanLookupSwitch() local130 int end = npairs * 8 + (index += 4); in scanLookupSwitch()
351 int npairs = iter.s32bitAt(index += 4); in mergeLookupSwitch() local352 int end = npairs * 8 + (index += 4); in mergeLookupSwitch()
758 int npairs = ByteArray.read32bit(code, index2); in nextOpcode() local759 return index2 + npairs * 8 + 4; in nextOpcode()935 int npairs = ByteArray.read32bit(code, i2 + 4); in insertGap2() local936 ByteArray.write32bit(npairs, newcode, j + 4); in insertGap2()939 i2 = i0 + npairs * 8; in insertGap2()1198 int npairs = ByteArray.read32bit(code, i2 + 4); in makeJumpList() local1200 int[] matches = new int[npairs]; in makeJumpList()1201 int[] offsets = new int[npairs]; in makeJumpList()1202 for (int j = 0; j < npairs; j++) { in makeJumpList()
160 int npairs = ci.s32bitAt(index2 + 4); in processBranch() local162 for (int i = 0; i < npairs; ++i) { in processBranch()
228 int npairs = iter.s32bitAt(index += 4); in lookupSwitch() local229 int end = npairs * 8 + (index += 4); in lookupSwitch()
819 …final int npairs = ((0xFF & code [++ scan]) << 24) | ((0xFF & code [++ scan]) << 16) | ((0xFF & co… in visit() local821 final int [] keys = new int [npairs]; in visit()822 final int [] targets = new int [npairs + 1]; in visit()825 for (int p = 0; p < npairs; ++ p) in visit()1704 final int npairs = m_keys.length; in emit() local1705 out.write4 (npairs >>> 24, // byte1 in emit()1706 npairs >>> 16, // byte2 in emit()1707 npairs >>> 8, // byte3 in emit()1708 npairs); // byte4 in emit()
511 int npairs = 0; in atSwitchStmnt() local514 ++npairs; in atSwitchStmnt()519 bytecode.add32bit(npairs); in atSwitchStmnt()520 bytecode.addGap(npairs * 8); in atSwitchStmnt()522 long[] pairs = new long[npairs]; in atSwitchStmnt()544 for (int i = 0; i < npairs; ++i) { in atSwitchStmnt()