Lines Matching defs:temp
264 static uint128_t temp;
279 randomdev_hash_finish(&yarrow_state.ys_pool[RANDOM_YARROW_SLOW].ysp_hash, &temp);
280 randomdev_hash_iterate(&context, &temp, sizeof(temp));
282 randomdev_hash_finish(&yarrow_state.ys_pool[RANDOM_YARROW_FAST].ysp_hash, &temp);
283 randomdev_hash_iterate(&context, &temp, sizeof(temp));
310 randomdev_hash_finish(&context, &temp);
311 randomdev_encrypt_init(&yarrow_state.ys_key, &temp);
314 randomdev_encrypt(&yarrow_state.ys_key, &yarrow_state.ys_counter, &temp, RANDOM_BLOCKSIZE);
315 yarrow_state.ys_counter = temp;
322 explicit_bzero(&temp, sizeof(temp));
348 uint8_t temp[RANDOM_KEYSIZE];
353 randomdev_encrypt(&yarrow_state.ys_key, &yarrow_state.ys_counter, temp + i, RANDOM_BLOCKSIZE);
354 randomdev_encrypt_init(&yarrow_state.ys_key, temp);
355 explicit_bzero(temp, sizeof(temp));