Lines Matching refs:mlen
779 u64 mlen = ctx->len.u[1]; in CRYPTO_gcm128_encrypt() local
783 mlen += len; in CRYPTO_gcm128_encrypt()
784 if (mlen > ((U64(1) << 36) - 32) || (sizeof(len) == 8 && mlen < len)) in CRYPTO_gcm128_encrypt()
786 ctx->len.u[1] = mlen; in CRYPTO_gcm128_encrypt()
1004 u64 mlen = ctx->len.u[1]; in CRYPTO_gcm128_decrypt() local
1008 mlen += len; in CRYPTO_gcm128_decrypt()
1009 if (mlen > ((U64(1) << 36) - 32) || (sizeof(len) == 8 && mlen < len)) in CRYPTO_gcm128_decrypt()
1011 ctx->len.u[1] = mlen; in CRYPTO_gcm128_decrypt()
1240 u64 mlen = ctx->len.u[1]; in CRYPTO_gcm128_encrypt_ctr32()
1243 mlen += len; in CRYPTO_gcm128_encrypt_ctr32()
1244 if (mlen > ((U64(1) << 36) - 32) || (sizeof(len) == 8 && mlen < len)) in CRYPTO_gcm128_encrypt_ctr32()
1246 ctx->len.u[1] = mlen; in CRYPTO_gcm128_encrypt_ctr32()
1394 u64 mlen = ctx->len.u[1]; in CRYPTO_gcm128_decrypt_ctr32()
1397 mlen += len; in CRYPTO_gcm128_decrypt_ctr32()
1398 if (mlen > ((U64(1) << 36) - 32) || (sizeof(len) == 8 && mlen < len)) in CRYPTO_gcm128_decrypt_ctr32()
1400 ctx->len.u[1] = mlen; in CRYPTO_gcm128_decrypt_ctr32()