Lines Matching refs:m_iv
220 } m_iv; member
669 rtl_zeroMemory (&(ctx->m_iv), sizeof(ctx->m_iv)); in __rtl_cipherBF_init()
710 rtl_copyMemory (ctx->m_iv.m_byte, pArgData, nArgLen); in __rtl_cipherBF_init()
715 ctx->m_iv.m_long[0] = DL; in __rtl_cipherBF_init()
716 ctx->m_iv.m_long[1] = DR; in __rtl_cipherBF_init()
833 DL ^= ctx->m_iv.m_long[0]; in __rtl_cipherBF_updateCBC()
834 DR ^= ctx->m_iv.m_long[1]; in __rtl_cipherBF_updateCBC()
838 ctx->m_iv.m_long[0] = DL; in __rtl_cipherBF_updateCBC()
839 ctx->m_iv.m_long[1] = DR; in __rtl_cipherBF_updateCBC()
856 DL ^= ctx->m_iv.m_long[0]; in __rtl_cipherBF_updateCBC()
857 DR ^= ctx->m_iv.m_long[1]; in __rtl_cipherBF_updateCBC()
859 ctx->m_iv.m_long[0] = IVL; in __rtl_cipherBF_updateCBC()
860 ctx->m_iv.m_long[1] = IVR; in __rtl_cipherBF_updateCBC()
880 iv = ctx->m_iv.m_byte; in __rtl_cipherBF_updateCFB()