Home
last modified time | relevance | path

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

/tools/apksig/src/main/java/com/android/apksig/internal/apk/
DApkSigningBlockUtils.java415 long chunkCountLong = 0; in computeOneMbChunkContentDigests() local
417 chunkCountLong += in computeOneMbChunkContentDigests()
420 if (chunkCountLong > Integer.MAX_VALUE) { in computeOneMbChunkContentDigests()
421 throw new DigestException("Input too long: " + chunkCountLong + " chunks"); in computeOneMbChunkContentDigests()
423 int chunkCount = (int) chunkCountLong; in computeOneMbChunkContentDigests()