Lines Matching refs:export
1970 struct talitos_export_state *export = out; in ahash_export() local
1972 memcpy(export->hw_context, req_ctx->hw_context, in ahash_export()
1974 memcpy(export->buf, req_ctx->buf, req_ctx->nbuf); in ahash_export()
1975 export->swinit = req_ctx->swinit; in ahash_export()
1976 export->first = req_ctx->first; in ahash_export()
1977 export->last = req_ctx->last; in ahash_export()
1978 export->to_hash_later = req_ctx->to_hash_later; in ahash_export()
1979 export->nbuf = req_ctx->nbuf; in ahash_export()
1988 const struct talitos_export_state *export = in; in ahash_import() local
1995 memcpy(req_ctx->hw_context, export->hw_context, in ahash_import()
1997 memcpy(req_ctx->buf, export->buf, export->nbuf); in ahash_import()
1998 req_ctx->swinit = export->swinit; in ahash_import()
1999 req_ctx->first = export->first; in ahash_import()
2000 req_ctx->last = export->last; in ahash_import()
2001 req_ctx->to_hash_later = export->to_hash_later; in ahash_import()
2002 req_ctx->nbuf = export->nbuf; in ahash_import()
2770 t_alg->algt.alg.hash.export = ahash_export; in talitos_alg_alloc()