HomeSort by relevance Sort by last modified time
    Searched refs:inIndex (Results 1 - 4 of 4) sorted by null

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
CCMBlockCipher.java 262 int inIndex = inOff;
277 while (inIndex < (inOff + inLen - blockSize)) // S1...
279 ctrCipher.processBlock(in, inIndex, output, outIndex);
281 inIndex += blockSize;
286 System.arraycopy(in, inIndex, block, 0, inLen + inOff - inIndex);
290 System.arraycopy(block, 0, output, outIndex, inLen + inOff - inIndex);
315 while (inIndex < (inOff + outputLen - blockSize))
317 ctrCipher.processBlock(in, inIndex, output, outIndex);
319 inIndex += blockSize
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zEncode.cpp 35 bindPair.InIndex = bindInfo.BindPairs[i].InIndex;
330 bindPair.InIndex = numInStreams + coderStreamsInfo.NumInStreams;
352 bindPair.InIndex = _bindInfo.GetCoderInStreamIndex(bind.InCoder) + bind.InStream;
369 int inIndex = _bindInfo.InStreams[0];
373 _bindInfo.FindInStream(inIndex, coderIndex, coderStreamIndex);
378 inIndex = _bindInfo.BindPairs[binder].InIndex;
398 bindPair.InIndex = numInStreams + i;