Searched refs:gapLength (Results 1 – 5 of 5) sorted by relevance
/external/javassist/src/main/javassist/bytecode/ |
D | CodeIterator.java | 685 public void appendGap(int gapLength) { in appendGap() argument 688 byte[] newcode = new byte[codeLength + gapLength]; in appendGap() 694 for (i = codeLength; i < codeLength + gapLength; ++i) in appendGap() 796 static byte[] insertGapCore0(byte[] code, int where, int gapLength, in insertGapCore0() argument 800 if (gapLength <= 0) in insertGapCore0() 804 return insertGapCore1(code, where, gapLength, exclusive, etable, ca); in insertGapCore0() 808 return insertGapCore1(code, where, (gapLength + 3) & ~3, in insertGapCore0() 817 private static byte[] insertGapCore1(byte[] code, int where, int gapLength, in insertGapCore1() argument 823 byte[] newcode = new byte[codeLength + gapLength]; in insertGapCore1() 824 insertGap2(code, where, gapLength, codeLength, newcode, exclusive); in insertGapCore1() [all …]
|
D | ExceptionTable.java | 251 void shiftPc(int where, int gapLength, boolean exclusive) { in shiftPc() argument 255 e.startPc = shiftPc(e.startPc, where, gapLength, exclusive); in shiftPc() 256 e.endPc = shiftPc(e.endPc, where, gapLength, exclusive); in shiftPc() 257 e.handlerPc = shiftPc(e.handlerPc, where, gapLength, exclusive); in shiftPc() 261 private static int shiftPc(int pc, int where, int gapLength, in shiftPc() argument 264 pc += gapLength; in shiftPc()
|
D | LineNumberAttribute.java | 172 void shiftPc(int where, int gapLength, boolean exclusive) { in shiftPc() argument 178 ByteArray.write16bit(pc + gapLength, info, pos); in shiftPc()
|
D | LocalVariableAttribute.java | 180 void shiftPc(int where, int gapLength, boolean exclusive) { in shiftPc() argument 190 ByteArray.write16bit(pc + gapLength, info, pos); in shiftPc() 192 ByteArray.write16bit(len + gapLength, info, pos + 2); in shiftPc()
|
/external/icu/icu4c/source/tools/toolutil/ |
D | denseranges.cpp | 32 void add(int32_t gapStart, int64_t gapLength) { in add() argument 34 while(i>0 && gapLength>gapLengths[i-1]) { in add() 48 gapLengths[i]=gapLength; in add() 60 int64_t gapLength(int32_t i) const { return gapLengths[i]; } in gapLength() function in __anon9dbd04d20111::LargestGaps 144 maxLength-=gaps.gapLength(i); in uprv_makeDenseRanges() 156 ranges[i+1][0]=minValue=(int32_t)(gapStart+gaps.gapLength(gapIndex)); in uprv_makeDenseRanges()
|