Searched refs:clearBytes (Results 1 - 2 of 2) sorted by relevance

/frameworks/av/media/libstagefright/mpeg2ts/
H A DHlsSampleDecryptor.cpp131 size_t clearBytes = std::min(remainingBytes, (size_t)(9 * AES_BLOCK_SIZE)); local
133 offset += clearBytes;
134 remainingBytes -= clearBytes;
193 size_t clearBytes = remainingBytes; local
194 if (clearBytes > 0) {
195 CHECK(clearBytes < AES_BLOCK_SIZE);
249 size_t clearBytes = remainingBytes; local
250 if (clearBytes > 0) {
251 CHECK(clearBytes < AES_BLOCK_SIZE);
/frameworks/base/services/core/java/com/android/server/accounts/
H A DCryptoHelper.java60 byte[] clearBytes = parcel.marshall();
65 byte[] encryptedBytes = cipher.doFinal(clearBytes);

Completed in 28 milliseconds