Searched refs:gapLen (Results 1 - 7 of 7) sorted by relevance

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
H A DCBCBlockCipherMac.java146 int gapLen = blockSize - bufOff;
148 if (len > gapLen)
150 System.arraycopy(in, inOff, buf, bufOff, gapLen);
155 len -= gapLen;
156 inOff += gapLen;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DBufferedBlockCipher.java209 int gapLen = buf.length - bufOff;
211 if (len > gapLen)
213 System.arraycopy(in, inOff, buf, bufOff, gapLen);
218 len -= gapLen;
219 inOff += gapLen;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
H A DCTSBlockCipher.java142 int gapLen = buf.length - bufOff;
144 if (len > gapLen)
146 System.arraycopy(in, inOff, buf, bufOff, gapLen);
153 len -= gapLen;
154 inOff += gapLen;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
H A DPaddedBufferedBlockCipher.java200 int gapLen = buf.length - bufOff;
202 if (len > gapLen)
204 System.arraycopy(in, inOff, buf, bufOff, gapLen);
209 len -= gapLen;
210 inOff += gapLen;
/external/webkit/Source/WebCore/editing/
H A DCompositeEditCommand.cpp565 int gapLen = gapEnd - gapStart; local
566 if (indicesIntersect && gapLen > 0) {
572 str.remove(gapStart - start - removed, gapLen);
573 removed += gapLen;
/external/javassist/src/main/javassist/
H A DCtBehavior.java796 int gapLen = iterator.getCodeLength() - gapPos - handlerLen;
797 int subr = iterator.getCodeLength() - gapLen;
809 subr = iterator.getCodeLength() - gapLen;
/external/robolectric/lib/main/
H A Djavassist-3.14.0-GA.jarMETA-INF/ META-INF/MANIFEST.MF javassist/ javassist/bytecode/ javassist/bytecode/analysis/ javassist/bytecode/annotation/ javassist/ ...

Completed in 213 milliseconds