Lines Matching defs:xmm_temp

2453     const XMMRegister xmm_temp   = xmm1;
2474 const XMMRegister xmm_key_shuf_mask = xmm_temp; // used temporarily to swap key bytes up front
2493 __ movdqu(xmm_temp, Address(from, pos, Address::times_1, 0)); // get next 16 bytes of input
2494 __ pxor (xmm_result, xmm_temp); // xor with the current r vector
2501 aes_enc_key(xmm_result, xmm_temp, key, key_offset);
2503 load_key(xmm_temp, key, 0xa0);
2504 __ aesenclast(xmm_result, xmm_temp);
2529 __ movdqu(xmm_temp, Address(from, pos, Address::times_1, 0)); // get next 16 bytes of input
2530 __ pxor (xmm_result, xmm_temp); // xor with the current r vector
2537 aes_enc_key(xmm_result, xmm_temp, key, key_offset);
2539 load_key(xmm_temp, key, 0xc0);
2540 __ aesenclast(xmm_result, xmm_temp);
2554 __ movdqu(xmm_temp, Address(from, pos, Address::times_1, 0)); // get next 16 bytes of input
2555 __ pxor (xmm_result, xmm_temp); // xor with the current r vector
2562 aes_enc_key(xmm_result, xmm_temp, key, key_offset);
2564 load_key(xmm_temp, key, 0xe0);
2565 __ aesenclast(xmm_result, xmm_temp);
2610 const XMMRegister xmm_temp = xmm1;
2664 aes_dec_key(xmm_result, xmm_temp, key, key_offset);
2666 load_key(xmm_temp, key, 0x00); // final key is stored in java expanded array at offset 0
2667 __ aesdeclast(xmm_result, xmm_temp);
2668 __ movdqu(xmm_temp, Address(prev_block_cipher_ptr, 0x00));
2669 __ pxor (xmm_result, xmm_temp); // xor with the current r vector
2679 __ movdqu(xmm_temp, Address(prev_block_cipher_ptr, 0x00));
2681 __ movdqu(Address(rvec, 0), xmm_temp); // final value of r stored in rvec of CipherBlockChaining object
2703 aes_dec_key(xmm_result, xmm_temp, key, key_offset);
2705 load_key(xmm_temp, key, 0x00); // final key is stored in java expanded array at offset 0
2706 __ aesdeclast(xmm_result, xmm_temp);
2707 __ movdqu(xmm_temp, Address(prev_block_cipher_ptr, 0x00));
2708 __ pxor (xmm_result, xmm_temp); // xor with the current r vector
2728 aes_dec_key(xmm_result, xmm_temp, key, key_offset);
2730 load_key(xmm_temp, key, 0x00); // final key is stored in java expanded array at offset 0
2731 __ aesdeclast(xmm_result, xmm_temp);
2732 __ movdqu(xmm_temp, Address(prev_block_cipher_ptr, 0x00));
2733 __ pxor (xmm_result, xmm_temp); // xor with the current r vector