D | stm32wlxx_hal_pka.c | 287 void PKA_Memcpy_u32_to_u8(uint8_t dst[], __IO const uint32_t src[], size_t n); 288 void PKA_Memcpy_u8_to_u32(__IO uint32_t dst[], const uint8_t src[], size_t n); 289 void PKA_Memcpy_u32_to_u32(__IO uint32_t dst[], __IO const uint32_t src[], size_t n); 1877 void PKA_Memcpy_u32_to_u8(uint8_t dst[], __IO const uint32_t src[], size_t n) in PKA_Memcpy_u32_to_u8() argument 1881 if (src != NULL) in PKA_Memcpy_u32_to_u8() 1890 dst[index_uint8_t + 3UL] = (uint8_t)((src[index_uint32_t] & 0x000000FFU)); in PKA_Memcpy_u32_to_u8() 1891 dst[index_uint8_t + 2UL] = (uint8_t)((src[index_uint32_t] & 0x0000FF00U) >> 8UL); in PKA_Memcpy_u32_to_u8() 1892 dst[index_uint8_t + 1UL] = (uint8_t)((src[index_uint32_t] & 0x00FF0000U) >> 16UL); in PKA_Memcpy_u32_to_u8() 1893 dst[index_uint8_t + 0UL] = (uint8_t)((src[index_uint32_t] & 0xFF000000U) >> 24UL); in PKA_Memcpy_u32_to_u8() 1899 dst[0UL] = (uint8_t)((src[index_uint32_t] & 0x000000FFU)); in PKA_Memcpy_u32_to_u8() [all …]
|