Home
last modified time | relevance | path

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

/external/bouncycastle/bcprov/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()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
DBufferedBlockCipher.java216 int gapLen = buf.length - bufOff; in processBytes() local
218 if (len > gapLen) in processBytes()
220 System.arraycopy(in, inOff, buf, bufOff, gapLen); in processBytes()
225 len -= gapLen; in processBytes()
226 inOff += gapLen; in processBytes()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/paddings/
DPaddedBufferedBlockCipher.java200 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/
DCTSBlockCipher.java143 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/
DCtBehavior.java796 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/libevent/
Devutil.c1773 int gapLen = 8 - setWords; in evutil_inet_pton()
1777 memmove(&words[gapPos+gapLen], &words[gapPos], in evutil_inet_pton()
1779 memset(&words[gapPos], 0, sizeof(ev_uint16_t)*gapLen); in evutil_inet_pton()