Lines Matching refs:dst

314 void PKA_Memcpy_u32_to_u8(uint8_t dst[], __IO const uint32_t src[], size_t n);
315 void PKA_Memcpy_u8_to_u32(__IO uint32_t dst[], const uint8_t src[], size_t n);
316 void PKA_Memcpy_u32_to_u32(__IO uint32_t dst[], __IO const uint32_t src[], size_t n);
2081 void PKA_Memcpy_u32_to_u8(uint8_t dst[], __IO const uint32_t src[], size_t n) in PKA_Memcpy_u32_to_u8() argument
2083 if (dst != NULL) in PKA_Memcpy_u32_to_u8()
2094 dst[index_uint8_t + 3UL] = (uint8_t)((src[index_uint32_t] & 0x000000FFU)); in PKA_Memcpy_u32_to_u8()
2095 dst[index_uint8_t + 2UL] = (uint8_t)((src[index_uint32_t] & 0x0000FF00U) >> 8UL); in PKA_Memcpy_u32_to_u8()
2096 dst[index_uint8_t + 1UL] = (uint8_t)((src[index_uint32_t] & 0x00FF0000U) >> 16UL); in PKA_Memcpy_u32_to_u8()
2097 dst[index_uint8_t + 0UL] = (uint8_t)((src[index_uint32_t] & 0xFF000000U) >> 24UL); in PKA_Memcpy_u32_to_u8()
2103 dst[0UL] = (uint8_t)((src[index_uint32_t] & 0x000000FFU)); in PKA_Memcpy_u32_to_u8()
2107 dst[1UL] = (uint8_t)((src[index_uint32_t] & 0x000000FFU)); in PKA_Memcpy_u32_to_u8()
2108 dst[0UL] = (uint8_t)((src[index_uint32_t] & 0x0000FF00U) >> 8UL); in PKA_Memcpy_u32_to_u8()
2112 dst[2UL] = (uint8_t)((src[index_uint32_t] & 0x000000FFU)); in PKA_Memcpy_u32_to_u8()
2113 dst[1UL] = (uint8_t)((src[index_uint32_t] & 0x0000FF00U) >> 8UL); in PKA_Memcpy_u32_to_u8()
2114 dst[0UL] = (uint8_t)((src[index_uint32_t] & 0x00FF0000U) >> 16UL); in PKA_Memcpy_u32_to_u8()
2131 void PKA_Memcpy_u8_to_u32(__IO uint32_t dst[], const uint8_t src[], size_t n) in PKA_Memcpy_u8_to_u32() argument
2133 if (dst != NULL) in PKA_Memcpy_u8_to_u32()
2142 dst[index] = ((uint32_t)src[(n - (index * 4UL) - 1UL)]) \ in PKA_Memcpy_u8_to_u32()
2151 dst[index] = (uint32_t)src[(n - (index * 4UL) - 1UL)]; in PKA_Memcpy_u8_to_u32()
2155 dst[index] = ((uint32_t)src[(n - (index * 4UL) - 1UL)]) \ in PKA_Memcpy_u8_to_u32()
2160 dst[index] = ((uint32_t)src[(n - (index * 4UL) - 1UL)]) \ in PKA_Memcpy_u8_to_u32()
2179 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
2182 if (dst != NULL) in PKA_Memcpy_u32_to_u32()
2191 dst[index] = src[index]; in PKA_Memcpy_u32_to_u32()