Home
last modified time | relevance | path

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

/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/upstream/crypto/
DAesFlushingCipher.java43 private int pendingXorBytes; field in AesFlushingCipher
75 while (pendingXorBytes > 0) { in update()
76 out[outOffset] = (byte) (in[inOffset] ^ flushedBlock[blockSize - pendingXorBytes]); in update()
79 pendingXorBytes--; in update()
100 pendingXorBytes = blockSize - bytesToFlush; in update()
101 written = nonFlushingUpdate(zerosBlock, 0, pendingXorBytes, flushedBlock, 0); in update()