Lines Matching defs:export
2133 struct talitos_export_state *export = out;
2143 memcpy(export->hw_context, req_ctx->hw_context,
2145 memcpy(export->buf, req_ctx->buf[req_ctx->buf_idx], req_ctx->nbuf);
2146 export->swinit = req_ctx->swinit;
2147 export->first = req_ctx->first;
2148 export->last = req_ctx->last;
2149 export->to_hash_later = req_ctx->to_hash_later;
2150 export->nbuf = req_ctx->nbuf;
2161 const struct talitos_export_state *export = in;
2170 memcpy(req_ctx->hw_context, export->hw_context, size);
2171 memcpy(req_ctx->buf[0], export->buf, export->nbuf);
2172 req_ctx->swinit = export->swinit;
2173 req_ctx->first = export->first;
2174 req_ctx->last = export->last;
2175 req_ctx->to_hash_later = export->to_hash_later;
2176 req_ctx->nbuf = export->nbuf;
3233 t_alg->algt.alg.hash.export = ahash_export;