Lines Matching refs:export
2135 struct talitos_export_state *export = out; in ahash_export() local
2145 memcpy(export->hw_context, req_ctx->hw_context, in ahash_export()
2147 memcpy(export->buf, req_ctx->buf[req_ctx->buf_idx], req_ctx->nbuf); in ahash_export()
2148 export->swinit = req_ctx->swinit; in ahash_export()
2149 export->first = req_ctx->first; in ahash_export()
2150 export->last = req_ctx->last; in ahash_export()
2151 export->to_hash_later = req_ctx->to_hash_later; in ahash_export()
2152 export->nbuf = req_ctx->nbuf; in ahash_export()
2163 const struct talitos_export_state *export = in; in ahash_import() local
2172 memcpy(req_ctx->hw_context, export->hw_context, size); in ahash_import()
2173 memcpy(req_ctx->buf[0], export->buf, export->nbuf); in ahash_import()
2174 req_ctx->swinit = export->swinit; in ahash_import()
2175 req_ctx->first = export->first; in ahash_import()
2176 req_ctx->last = export->last; in ahash_import()
2177 req_ctx->to_hash_later = export->to_hash_later; in ahash_import()
2178 req_ctx->nbuf = export->nbuf; in ahash_import()
3233 t_alg->algt.alg.hash.export = ahash_export; in talitos_alg_alloc()