Lines Matching defs:spu_exp
2291 struct spu_hash_export_s *spu_exp = (struct spu_hash_export_s *)out;
2293 spu_exp->total_todo = rctx->total_todo;
2294 spu_exp->total_sent = rctx->total_sent;
2295 spu_exp->is_sw_hmac = rctx->is_sw_hmac;
2296 memcpy(spu_exp->hash_carry, rctx->hash_carry, sizeof(rctx->hash_carry));
2297 spu_exp->hash_carry_len = rctx->hash_carry_len;
2298 memcpy(spu_exp->incr_hash, rctx->incr_hash, sizeof(rctx->incr_hash));
2306 struct spu_hash_export_s *spu_exp = (struct spu_hash_export_s *)in;
2308 rctx->total_todo = spu_exp->total_todo;
2309 rctx->total_sent = spu_exp->total_sent;
2310 rctx->is_sw_hmac = spu_exp->is_sw_hmac;
2311 memcpy(rctx->hash_carry, spu_exp->hash_carry, sizeof(rctx->hash_carry));
2312 rctx->hash_carry_len = spu_exp->hash_carry_len;
2313 memcpy(rctx->incr_hash, spu_exp->incr_hash, sizeof(rctx->incr_hash));