Searched refs:gapLen (Results 1 – 6 of 6) sorted by relevance
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/ |
D | CBCBlockCipherMac.java | 146 int gapLen = blockSize - bufOff; in update() local 148 if (len > gapLen) in update() 150 System.arraycopy(in, inOff, buf, bufOff, gapLen); in update() 155 len -= gapLen; in update() 156 inOff += gapLen; in update()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ |
D | BufferedBlockCipher.java | 209 int gapLen = buf.length - bufOff; in processBytes() local 211 if (len > gapLen) in processBytes() 213 System.arraycopy(in, inOff, buf, bufOff, gapLen); in processBytes() 218 len -= gapLen; in processBytes() 219 inOff += gapLen; in processBytes()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/ |
D | PaddedBufferedBlockCipher.java | 200 int gapLen = buf.length - bufOff; in processBytes() local 202 if (len > gapLen) in processBytes() 204 System.arraycopy(in, inOff, buf, bufOff, gapLen); in processBytes() 209 len -= gapLen; in processBytes() 210 inOff += gapLen; in processBytes()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/ |
D | CTSBlockCipher.java | 143 int gapLen = buf.length - bufOff; in processBytes() local 145 if (len > gapLen) in processBytes() 147 System.arraycopy(in, inOff, buf, bufOff, gapLen); in processBytes() 154 len -= gapLen; in processBytes() 155 inOff += gapLen; in processBytes()
|
/external/javassist/src/main/javassist/ |
D | CtBehavior.java | 796 int gapLen = iterator.getCodeLength() - gapPos - handlerLen; in insertAfter() local 797 int subr = iterator.getCodeLength() - gapLen; in insertAfter() 809 subr = iterator.getCodeLength() - gapLen; in insertAfter()
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | CompositeEditCommand.cpp | 761 int gapLen = gapEnd - gapStart; in deleteInsignificantText() local 762 if (indicesIntersect && gapLen > 0) { in deleteInsignificantText() 767 str.remove(gapStart - start - removed, gapLen); in deleteInsignificantText() 768 removed += gapLen; in deleteInsignificantText()
|