Lines Matching refs:n

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
2147 for (; index_uint32_t < (n / 4UL); index_uint32_t++) in PKA_Memcpy_u32_to_u8()
2151 uint32_t index_uint8_t = n - 4UL - (index_uint32_t * 4UL); in PKA_Memcpy_u32_to_u8()
2159 if ((n % 4UL) == 1UL) in PKA_Memcpy_u32_to_u8()
2163 else if ((n % 4UL) == 2UL) in PKA_Memcpy_u32_to_u8()
2168 else if ((n % 4UL) == 3UL) 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
2197 for (; index < (n / 4UL); index++) in PKA_Memcpy_u8_to_u32()
2200 dst[index] = ((uint32_t)src[(n - (index * 4UL) - 1UL)]) \ in PKA_Memcpy_u8_to_u32()
2201 | ((uint32_t)src[(n - (index * 4UL) - 2UL)] << 8UL) \ in PKA_Memcpy_u8_to_u32()
2202 | ((uint32_t)src[(n - (index * 4UL) - 3UL)] << 16UL) \ in PKA_Memcpy_u8_to_u32()
2203 | ((uint32_t)src[(n - (index * 4UL) - 4UL)] << 24UL); in PKA_Memcpy_u8_to_u32()
2207 if ((n % 4UL) == 1UL) in PKA_Memcpy_u8_to_u32()
2209 dst[index] = (uint32_t)src[(n - (index * 4UL) - 1UL)]; in PKA_Memcpy_u8_to_u32()
2211 else if ((n % 4UL) == 2UL) in PKA_Memcpy_u8_to_u32()
2213 dst[index] = ((uint32_t)src[(n - (index * 4UL) - 1UL)]) \ in PKA_Memcpy_u8_to_u32()
2214 | ((uint32_t)src[(n - (index * 4UL) - 2UL)] << 8UL); in PKA_Memcpy_u8_to_u32()
2216 else if ((n % 4UL) == 3UL) in PKA_Memcpy_u8_to_u32()
2218 dst[index] = ((uint32_t)src[(n - (index * 4UL) - 1UL)]) \ in PKA_Memcpy_u8_to_u32()
2219 | ((uint32_t)src[(n - (index * 4UL) - 2UL)] << 8UL) \ in PKA_Memcpy_u8_to_u32()
2220 | ((uint32_t)src[(n - (index * 4UL) - 3UL)] << 16UL); 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
2246 for (uint32_t index = 0UL; index < n; index++) in PKA_Memcpy_u32_to_u32()