Lines Matching refs:n
286 void PKA_Memcpy_u32_to_u8(uint8_t dst[], __IO const uint32_t src[], size_t n);
287 void PKA_Memcpy_u8_to_u32(__IO uint32_t dst[], const uint8_t src[], size_t n);
288 void PKA_Memcpy_u32_to_u32(__IO uint32_t dst[], __IO const uint32_t src[], size_t n);
1811 void PKA_Memcpy_u32_to_u8(uint8_t dst[], __IO const uint32_t src[], size_t n) in PKA_Memcpy_u32_to_u8() argument
1819 for (; index_uint32_t < (n / 4UL); index_uint32_t++) in PKA_Memcpy_u32_to_u8()
1823 uint32_t index_uint8_t = n - 4UL - (index_uint32_t * 4UL); in PKA_Memcpy_u32_to_u8()
1831 if ((n % 4UL) == 1UL) in PKA_Memcpy_u32_to_u8()
1835 else if ((n % 4UL) == 2UL) in PKA_Memcpy_u32_to_u8()
1840 else if ((n % 4UL) == 3UL) in PKA_Memcpy_u32_to_u8()
1861 void PKA_Memcpy_u8_to_u32(__IO uint32_t dst[], const uint8_t src[], size_t n) in PKA_Memcpy_u8_to_u32() argument
1869 for (; index < (n / 4UL); index++) in PKA_Memcpy_u8_to_u32()
1872 dst[index] = ((uint32_t)src[(n - (index * 4UL) - 1UL)]) \ in PKA_Memcpy_u8_to_u32()
1873 | ((uint32_t)src[(n - (index * 4UL) - 2UL)] << 8UL) \ in PKA_Memcpy_u8_to_u32()
1874 | ((uint32_t)src[(n - (index * 4UL) - 3UL)] << 16UL) \ in PKA_Memcpy_u8_to_u32()
1875 | ((uint32_t)src[(n - (index * 4UL) - 4UL)] << 24UL); in PKA_Memcpy_u8_to_u32()
1879 if ((n % 4UL) == 1UL) in PKA_Memcpy_u8_to_u32()
1881 dst[index] = (uint32_t)src[(n - (index * 4UL) - 1UL)]; in PKA_Memcpy_u8_to_u32()
1883 else if ((n % 4UL) == 2UL) in PKA_Memcpy_u8_to_u32()
1885 dst[index] = ((uint32_t)src[(n - (index * 4UL) - 1UL)]) \ in PKA_Memcpy_u8_to_u32()
1886 | ((uint32_t)src[(n - (index * 4UL) - 2UL)] << 8UL); in PKA_Memcpy_u8_to_u32()
1888 else if ((n % 4UL) == 3UL) in PKA_Memcpy_u8_to_u32()
1890 dst[index] = ((uint32_t)src[(n - (index * 4UL) - 1UL)]) \ in PKA_Memcpy_u8_to_u32()
1891 | ((uint32_t)src[(n - (index * 4UL) - 2UL)] << 8UL) \ in PKA_Memcpy_u8_to_u32()
1892 | ((uint32_t)src[(n - (index * 4UL) - 3UL)] << 16UL); in PKA_Memcpy_u8_to_u32()
1909 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
1918 for (uint32_t index = 0UL; index < n; index++) in PKA_Memcpy_u32_to_u32()