Lines Matching refs:MAX_BYTES
40 #define MAX_BYTES 768 macro
192 ubytes = nbytes > MAX_BYTES ? in ppc_ecb_encrypt()
193 nbytes - MAX_BYTES : nbytes & (AES_BLOCK_SIZE - 1); in ppc_ecb_encrypt()
220 ubytes = nbytes > MAX_BYTES ? in ppc_ecb_decrypt()
221 nbytes - MAX_BYTES : nbytes & (AES_BLOCK_SIZE - 1); in ppc_ecb_decrypt()
248 ubytes = nbytes > MAX_BYTES ? in ppc_cbc_encrypt()
249 nbytes - MAX_BYTES : nbytes & (AES_BLOCK_SIZE - 1); in ppc_cbc_encrypt()
276 ubytes = nbytes > MAX_BYTES ? in ppc_cbc_decrypt()
277 nbytes - MAX_BYTES : nbytes & (AES_BLOCK_SIZE - 1); in ppc_cbc_decrypt()
304 pbytes = pbytes > MAX_BYTES ? MAX_BYTES : pbytes; in ppc_ctr_crypt()
336 ubytes = nbytes > MAX_BYTES ? in ppc_xts_encrypt()
337 nbytes - MAX_BYTES : nbytes & (AES_BLOCK_SIZE - 1); in ppc_xts_encrypt()
367 ubytes = nbytes > MAX_BYTES ? in ppc_xts_decrypt()
368 nbytes - MAX_BYTES : nbytes & (AES_BLOCK_SIZE - 1); in ppc_xts_decrypt()