Lines Matching refs:dst
302 void PKA_Memcpy_u32_to_u8(uint8_t dst[], __IO const uint32_t src[], size_t n);
303 void PKA_Memcpy_u8_to_u32(__IO uint32_t dst[], const uint8_t src[], size_t n);
304 void PKA_Memcpy_u32_to_u32(__IO uint32_t dst[], __IO const uint32_t src[], size_t n);
2139 void PKA_Memcpy_u32_to_u8(uint8_t dst[], __IO const uint32_t src[], size_t n) in PKA_Memcpy_u32_to_u8() argument
2141 if (dst != NULL) in PKA_Memcpy_u32_to_u8()
2152 dst[index_uint8_t + 3UL] = (uint8_t)((src[index_uint32_t] & 0x000000FFU)); in PKA_Memcpy_u32_to_u8()
2153 dst[index_uint8_t + 2UL] = (uint8_t)((src[index_uint32_t] & 0x0000FF00U) >> 8UL); in PKA_Memcpy_u32_to_u8()
2154 dst[index_uint8_t + 1UL] = (uint8_t)((src[index_uint32_t] & 0x00FF0000U) >> 16UL); in PKA_Memcpy_u32_to_u8()
2155 dst[index_uint8_t + 0UL] = (uint8_t)((src[index_uint32_t] & 0xFF000000U) >> 24UL); in PKA_Memcpy_u32_to_u8()
2161 dst[0UL] = (uint8_t)((src[index_uint32_t] & 0x000000FFU)); in PKA_Memcpy_u32_to_u8()
2165 dst[1UL] = (uint8_t)((src[index_uint32_t] & 0x000000FFU)); in PKA_Memcpy_u32_to_u8()
2166 dst[0UL] = (uint8_t)((src[index_uint32_t] & 0x0000FF00U) >> 8UL); in PKA_Memcpy_u32_to_u8()
2170 dst[2UL] = (uint8_t)((src[index_uint32_t] & 0x000000FFU)); in PKA_Memcpy_u32_to_u8()
2171 dst[1UL] = (uint8_t)((src[index_uint32_t] & 0x0000FF00U) >> 8UL); in PKA_Memcpy_u32_to_u8()
2172 dst[0UL] = (uint8_t)((src[index_uint32_t] & 0x00FF0000U) >> 16UL); in PKA_Memcpy_u32_to_u8()
2189 void PKA_Memcpy_u8_to_u32(__IO uint32_t dst[], const uint8_t src[], size_t n) in PKA_Memcpy_u8_to_u32() argument
2191 if (dst != NULL) in PKA_Memcpy_u8_to_u32()
2200 dst[index] = ((uint32_t)src[(n - (index * 4UL) - 1UL)]) \ in PKA_Memcpy_u8_to_u32()
2209 dst[index] = (uint32_t)src[(n - (index * 4UL) - 1UL)]; in PKA_Memcpy_u8_to_u32()
2213 dst[index] = ((uint32_t)src[(n - (index * 4UL) - 1UL)]) \ in PKA_Memcpy_u8_to_u32()
2218 dst[index] = ((uint32_t)src[(n - (index * 4UL) - 1UL)]) \ in PKA_Memcpy_u8_to_u32()
2237 void PKA_Memcpy_u32_to_u32(__IO uint32_t dst[], __IO const uint32_t src[], size_t n) in PKA_Memcpy_u32_to_u32() argument
2240 if (dst != NULL) in PKA_Memcpy_u32_to_u32()
2249 dst[index] = src[index]; in PKA_Memcpy_u32_to_u32()