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.java302 long chunkCountLong = 0; in computeOneMbChunkContentDigests() local
304 chunkCountLong += in computeOneMbChunkContentDigests()
307 if (chunkCountLong > Integer.MAX_VALUE) { in computeOneMbChunkContentDigests()
308 throw new DigestException("Input too long: " + chunkCountLong + " chunks"); in computeOneMbChunkContentDigests()
310 int chunkCount = (int) chunkCountLong; in computeOneMbChunkContentDigests()
396 long chunkCountLong = 0; in computeOneMbChunkContentDigests() local
398 chunkCountLong += in computeOneMbChunkContentDigests()
401 if (chunkCountLong > Integer.MAX_VALUE) { in computeOneMbChunkContentDigests()
402 throw new DigestException("Input too long: " + chunkCountLong + " chunks"); in computeOneMbChunkContentDigests()
404 int chunkCount = (int) chunkCountLong; in computeOneMbChunkContentDigests()