Lines Matching refs:le32_to_cpu
1228 ctx->key_dec[key_len + 24] = ctx->key_enc[0] = le32_to_cpu(key[0]); in crypto_aes_expand_key()
1229 ctx->key_dec[key_len + 25] = ctx->key_enc[1] = le32_to_cpu(key[1]); in crypto_aes_expand_key()
1230 ctx->key_dec[key_len + 26] = ctx->key_enc[2] = le32_to_cpu(key[2]); in crypto_aes_expand_key()
1231 ctx->key_dec[key_len + 27] = ctx->key_enc[3] = le32_to_cpu(key[3]); in crypto_aes_expand_key()
1241 ctx->key_enc[4] = le32_to_cpu(key[4]); in crypto_aes_expand_key()
1242 t = ctx->key_enc[5] = le32_to_cpu(key[5]); in crypto_aes_expand_key()
1248 ctx->key_enc[4] = le32_to_cpu(key[4]); in crypto_aes_expand_key()
1249 ctx->key_enc[5] = le32_to_cpu(key[5]); in crypto_aes_expand_key()
1250 ctx->key_enc[6] = le32_to_cpu(key[6]); in crypto_aes_expand_key()
1251 t = ctx->key_enc[7] = le32_to_cpu(key[7]); in crypto_aes_expand_key()
1338 b0[0] = le32_to_cpu(src[0]) ^ ctx->key_enc[0]; in aes_encrypt()
1339 b0[1] = le32_to_cpu(src[1]) ^ ctx->key_enc[1]; in aes_encrypt()
1340 b0[2] = le32_to_cpu(src[2]) ^ ctx->key_enc[2]; in aes_encrypt()
1341 b0[3] = le32_to_cpu(src[3]) ^ ctx->key_enc[3]; in aes_encrypt()
1410 b0[0] = le32_to_cpu(src[0]) ^ ctx->key_dec[0]; in aes_decrypt()
1411 b0[1] = le32_to_cpu(src[1]) ^ ctx->key_dec[1]; in aes_decrypt()
1412 b0[2] = le32_to_cpu(src[2]) ^ ctx->key_dec[2]; in aes_decrypt()
1413 b0[3] = le32_to_cpu(src[3]) ^ ctx->key_dec[3]; in aes_decrypt()