Home | History | Annotate | Download | only in binary

Lines Matching refs:chunkSize

955      * @param chunkSize line-length of the output (<= 0 means no chunking) between each
962 private static long getEncodeLength(byte[] pArray, int chunkSize, byte[] chunkSeparator) {
964 chunkSize = (chunkSize / 4) * 4;
971 if (chunkSize > 0) {
972 boolean lenChunksPerfectly = len % chunkSize == 0;
973 len += (len / chunkSize) * chunkSeparator.length;