Searched defs:subr (Results 1 - 1 of 1) sorted by relevance

/external/javassist/src/main/javassist/
H A DCtBehavior.java797 int subr = iterator.getCodeLength() - gapLen;
801 if (pos >= subr)
808 insertGoto(iterator, subr, pos);
809 subr = iterator.getCodeLength() - gapLen;
850 * assert subr > pos
852 private void insertGoto(CodeIterator iterator, int subr, int pos) argument
855 iterator.setMark(subr);
858 boolean wide = subr + 2 - pos > Short.MAX_VALUE;

Completed in 1730 milliseconds