Searched refs:totalChunkCountLong (Results 1 – 1 of 1) sorted by relevance
196 long totalChunkCountLong = 0; in computeContentDigestsPer1MbChunk() local198 totalChunkCountLong += getChunkCount(input.size()); in computeContentDigestsPer1MbChunk()200 if (totalChunkCountLong >= Integer.MAX_VALUE / 1024) { in computeContentDigestsPer1MbChunk()201 throw new DigestException("Too many chunks: " + totalChunkCountLong); in computeContentDigestsPer1MbChunk()203 int totalChunkCount = (int) totalChunkCountLong; in computeContentDigestsPer1MbChunk()