Lines Matching refs:n
304 void PKA_Memcpy_u32_to_u8(uint8_t dst[], __IO const uint32_t src[], size_t n);
305 void PKA_Memcpy_u8_to_u32(__IO uint32_t dst[], const uint8_t src[], size_t n);
306 void PKA_Memcpy_u32_to_u32(__IO uint32_t dst[], __IO const uint32_t src[], size_t n);
2063 void PKA_Memcpy_u32_to_u8(uint8_t dst[], __IO const uint32_t src[], size_t n) in PKA_Memcpy_u32_to_u8() argument
2071 for (; index_uint32_t < (n / 4UL); index_uint32_t++) in PKA_Memcpy_u32_to_u8()
2075 uint32_t index_uint8_t = n - 4UL - (index_uint32_t * 4UL); in PKA_Memcpy_u32_to_u8()
2083 if ((n % 4UL) == 1UL) in PKA_Memcpy_u32_to_u8()
2087 else if ((n % 4UL) == 2UL) in PKA_Memcpy_u32_to_u8()
2092 else if ((n % 4UL) == 3UL) in PKA_Memcpy_u32_to_u8()
2113 void PKA_Memcpy_u8_to_u32(__IO uint32_t dst[], const uint8_t src[], size_t n) in PKA_Memcpy_u8_to_u32() argument
2121 for (; index < (n / 4UL); index++) in PKA_Memcpy_u8_to_u32()
2124 dst[index] = ((uint32_t)src[(n - (index * 4UL) - 1UL)]) \ in PKA_Memcpy_u8_to_u32()
2125 | ((uint32_t)src[(n - (index * 4UL) - 2UL)] << 8UL) \ in PKA_Memcpy_u8_to_u32()
2126 | ((uint32_t)src[(n - (index * 4UL) - 3UL)] << 16UL) \ in PKA_Memcpy_u8_to_u32()
2127 | ((uint32_t)src[(n - (index * 4UL) - 4UL)] << 24UL); in PKA_Memcpy_u8_to_u32()
2131 if ((n % 4UL) == 1UL) in PKA_Memcpy_u8_to_u32()
2133 dst[index] = (uint32_t)src[(n - (index * 4UL) - 1UL)]; in PKA_Memcpy_u8_to_u32()
2135 else if ((n % 4UL) == 2UL) in PKA_Memcpy_u8_to_u32()
2137 dst[index] = ((uint32_t)src[(n - (index * 4UL) - 1UL)]) \ in PKA_Memcpy_u8_to_u32()
2138 | ((uint32_t)src[(n - (index * 4UL) - 2UL)] << 8UL); in PKA_Memcpy_u8_to_u32()
2140 else if ((n % 4UL) == 3UL) in PKA_Memcpy_u8_to_u32()
2142 dst[index] = ((uint32_t)src[(n - (index * 4UL) - 1UL)]) \ in PKA_Memcpy_u8_to_u32()
2143 | ((uint32_t)src[(n - (index * 4UL) - 2UL)] << 8UL) \ in PKA_Memcpy_u8_to_u32()
2144 | ((uint32_t)src[(n - (index * 4UL) - 3UL)] << 16UL); in PKA_Memcpy_u8_to_u32()
2161 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
2170 for (uint32_t index = 0UL; index < n; index++) in PKA_Memcpy_u32_to_u32()