Searched refs:MAX_INPUT_SIZE (Results 1 – 5 of 5) sorted by relevance
32 private static final long MAX_INPUT_SIZE = 68719476704L; field in GCMBlockCipher268 if (getTotalInputSizeAfterNewInput(1) > MAX_INPUT_SIZE) { in processAADByte()269 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processAADByte()287 if (getTotalInputSizeAfterNewInput(len) > MAX_INPUT_SIZE) { in processAADBytes()288 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processAADBytes()331 if (getTotalInputSizeAfterNewInput(1) > MAX_INPUT_SIZE) { in processByte()332 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processByte()359 if (getTotalInputSizeAfterNewInput(len) > MAX_INPUT_SIZE) { in processBytes()360 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processBytes()
30 private static final long MAX_INPUT_SIZE = 68719476704L; field in GCMBlockCipher266 if (getTotalInputSizeAfterNewInput(1) > MAX_INPUT_SIZE) { in processAADByte()267 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processAADByte()285 if (getTotalInputSizeAfterNewInput(len) > MAX_INPUT_SIZE) { in processAADBytes()286 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processAADBytes()329 if (getTotalInputSizeAfterNewInput(1) > MAX_INPUT_SIZE) { in processByte()330 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processByte()357 if (getTotalInputSizeAfterNewInput(len) > MAX_INPUT_SIZE) { in processBytes()358 throw new DataLengthException("Input exceeded " + MAX_INPUT_SIZE + " bytes"); in processBytes()
14 #define MAX_INPUT_SIZE 20000 macro46 if (size > MAX_INPUT_SIZE) in LLVMFuzzerTestOneInput()
9 MAX_INPUT_SIZE = int(1e6) variable37 N = [n for n in range(MAX_INPUT_SIZE) if IsValidSize(n)]