Searched refs:dstsOffset (Results 1 – 2 of 2) sorted by relevance
/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | ConscryptEngine.java | 682 final ByteBuffer[] dsts, final int dstsOffset, final int dstsLength) in unwrap() argument 687 checkPositionIndexes(dstsOffset, dstsOffset + dstsLength, dsts.length); in unwrap() 690 final int dstLength = calcDstsLength(dsts, dstsOffset, dstsLength); in unwrap() 691 final int endOffset = dstsOffset + dstsLength; in unwrap() 799 for (int idx = dstsOffset; idx < endOffset; ++idx) { in unwrap() 875 private static int calcDstsLength(ByteBuffer[] dsts, int dstsOffset, int dstsLength) { in calcDstsLength() argument 883 if (i >= dstsOffset && i < dstsOffset + dstsLength) { in calcDstsLength()
|
D | Conscrypt.java | 489 int srcsOffset, final int srcsLength, final ByteBuffer[] dsts, final int dstsOffset, in unwrap() argument 492 srcs, srcsOffset, srcsLength, dsts, dstsOffset, dstsLength); in unwrap()
|