Lines Matching refs:src

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()
1903 dst[1UL] = (uint8_t)((src[index_uint32_t] & 0x000000FFU)); in PKA_Memcpy_u32_to_u8()
1904 dst[0UL] = (uint8_t)((src[index_uint32_t] & 0x0000FF00U) >> 8UL); in PKA_Memcpy_u32_to_u8()
1908 dst[2UL] = (uint8_t)((src[index_uint32_t] & 0x000000FFU)); in PKA_Memcpy_u32_to_u8()
1909 dst[1UL] = (uint8_t)((src[index_uint32_t] & 0x0000FF00U) >> 8UL); in PKA_Memcpy_u32_to_u8()
1910 dst[0UL] = (uint8_t)((src[index_uint32_t] & 0x00FF0000U) >> 16UL); in PKA_Memcpy_u32_to_u8()
1927 void PKA_Memcpy_u8_to_u32(__IO uint32_t dst[], const uint8_t src[], size_t n) in PKA_Memcpy_u8_to_u32() argument
1931 if (src != NULL) in PKA_Memcpy_u8_to_u32()
1938 dst[index] = ((uint32_t)src[(n - (index * 4UL) - 1UL)]) \ in PKA_Memcpy_u8_to_u32()
1939 | ((uint32_t)src[(n - (index * 4UL) - 2UL)] << 8UL) \ in PKA_Memcpy_u8_to_u32()
1940 | ((uint32_t)src[(n - (index * 4UL) - 3UL)] << 16UL) \ in PKA_Memcpy_u8_to_u32()
1941 | ((uint32_t)src[(n - (index * 4UL) - 4UL)] << 24UL); in PKA_Memcpy_u8_to_u32()
1947 dst[index] = (uint32_t)src[(n - (index * 4UL) - 1UL)]; in PKA_Memcpy_u8_to_u32()
1951 dst[index] = ((uint32_t)src[(n - (index * 4UL) - 1UL)]) \ in PKA_Memcpy_u8_to_u32()
1952 | ((uint32_t)src[(n - (index * 4UL) - 2UL)] << 8UL); in PKA_Memcpy_u8_to_u32()
1956 dst[index] = ((uint32_t)src[(n - (index * 4UL) - 1UL)]) \ in PKA_Memcpy_u8_to_u32()
1957 | ((uint32_t)src[(n - (index * 4UL) - 2UL)] << 8UL) \ in PKA_Memcpy_u8_to_u32()
1958 | ((uint32_t)src[(n - (index * 4UL) - 3UL)] << 16UL); in PKA_Memcpy_u8_to_u32()
1975 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
1981 if (src != NULL) in PKA_Memcpy_u32_to_u32()
1987 dst[index] = src[index]; in PKA_Memcpy_u32_to_u32()