OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:gapLen
(Results
1 - 7
of
7
) sorted by null
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
CBCBlockCipherMac.java
146
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/
BufferedBlockCipher.java
209
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/
CTSBlockCipher.java
142
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/
PaddedBufferedBlockCipher.java
200
int
gapLen
= buf.length - bufOff;
202
if (len >
gapLen
)
204
System.arraycopy(in, inOff, buf, bufOff,
gapLen
);
209
len -=
gapLen
;
210
inOff +=
gapLen
;
/external/javassist/src/main/javassist/
CtBehavior.java
796
int
gapLen
= iterator.getCodeLength() - gapPos - handlerLen;
797
int subr = iterator.getCodeLength() -
gapLen
;
809
subr = iterator.getCodeLength() -
gapLen
;
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/editing/
CompositeEditCommand.cpp
790
int
gapLen
= gapEnd - gapStart;
791
if (indicesIntersect &&
gapLen
> 0) {
797
str.remove(gapStart - start - removed,
gapLen
);
798
removed +=
gapLen
;
[
all
...]
/external/robolectric/lib/main/
javassist-3.14.0-GA.jar
Completed in 147 milliseconds