Lines Matching refs:remain
155 CK_ULONG remain; in soft_blowfish_encrypt_common() local
220 remain = total_len % BLOWFISH_BLOCK_LEN; in soft_blowfish_encrypt_common()
226 out_len = total_len - remain; in soft_blowfish_encrypt_common()
285 if (remain != 0) in soft_blowfish_encrypt_common()
287 (ulDataLen - remain), remain); in soft_blowfish_encrypt_common()
289 soft_blowfish_ctx->remain_len = remain; in soft_blowfish_encrypt_common()
327 CK_ULONG remain; in soft_blowfish_decrypt_common() local
383 remain = total_len % BLOWFISH_BLOCK_LEN; in soft_blowfish_decrypt_common()
389 out_len = total_len - remain; in soft_blowfish_decrypt_common()
448 if (remain != 0) in soft_blowfish_decrypt_common()
450 pEncrypted + (ulEncryptedLen - remain), in soft_blowfish_decrypt_common()
451 remain); in soft_blowfish_decrypt_common()
452 soft_blowfish_ctx->remain_len = remain; in soft_blowfish_decrypt_common()