Home
last modified time | relevance | path

Searched refs:gapLen (Results 1 – 6 of 6) sorted by relevance

/external/bouncycastle/src/main/java/org/bouncycastle/crypto/macs/
DCBCBlockCipherMac.java146 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()
DCMac.java162 int gapLen = blockSize - bufOff; in update() local
164 if (len > gapLen) in update()
166 System.arraycopy(in, inOff, buf, bufOff, gapLen); in update()
171 len -= gapLen; in update()
172 inOff += gapLen; in update()
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/
DBufferedBlockCipher.java209 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/src/main/java/org/bouncycastle/crypto/paddings/
DPaddedBufferedBlockCipher.java199 int gapLen = buf.length - bufOff; in processBytes() local
201 if (len > gapLen) in processBytes()
203 System.arraycopy(in, inOff, buf, bufOff, gapLen); in processBytes()
208 len -= gapLen; in processBytes()
209 inOff += gapLen; in processBytes()
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/modes/
DCTSBlockCipher.java142 int gapLen = buf.length - bufOff; in processBytes() local
144 if (len > gapLen) in processBytes()
146 System.arraycopy(in, inOff, buf, bufOff, gapLen); in processBytes()
153 len -= gapLen; in processBytes()
154 inOff += gapLen; in processBytes()
/external/webkit/WebCore/editing/
DCompositeEditCommand.cpp517 int gapLen = gapEnd - gapStart; in deleteInsignificantText() local
518 if (indicesIntersect && gapLen > 0) { in deleteInsignificantText()
524 str.remove(gapStart - start - removed, gapLen); in deleteInsignificantText()
525 removed += gapLen; in deleteInsignificantText()