Searched refs:gapLength (Results 1 – 6 of 6) 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/icu4c/tools/toolutil/ |
D | denseranges.cpp | 30 void add(int32_t gapStart, int64_t gapLength) { in add() argument 32 while(i>0 && gapLength>gapLengths[i-1]) { in add() 46 gapLengths[i]=gapLength; in add() 58 int64_t gapLength(int32_t i) const { return gapLengths[i]; } in gapLength() function in __anondb5274ad0111::LargestGaps 142 maxLength-=gaps.gapLength(i); in uprv_makeDenseRanges() 154 ranges[i+1][0]=minValue=(int32_t)(gapStart+gaps.gapLength(gapIndex)); in uprv_makeDenseRanges()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderBoxModelObject.cpp | 1928 float gapLength = dashLength; in drawBoxSideFromPath() local 1937 gapLength += (dashLength / numberOfGaps); in drawBoxSideFromPath() 1942 lineDash.append(gapLength); in drawBoxSideFromPath()
|