|
ESP-IDF Firmware
Firmware architecture and call graph
|
Go to the source code of this file.
| #define | dsps_memcpy memcpy |
| #define | dsps_memset memset |
| void * | dsps_memcpy_aes3 (void *arr_dest, const void *arr_src, size_t arr_len) |
| memory copy function using esp32s3 TIE | |
| void * | dsps_memset_aes3 (void *arr_dest, uint8_t set_val, size_t set_size) |
| memory set function using esp32s3 TIE |
| #define dsps_memcpy memcpy |
Definition at line 63 of file dsps_mem.h.
| #define dsps_memset memset |
Definition at line 64 of file dsps_mem.h.
| void * dsps_memcpy_aes3 | ( | void * | arr_dest, |
| const void * | arr_src, | ||
| size_t | arr_len ) |
memory copy function using esp32s3 TIE
The extension (_aes3) is optimized for esp32S3 chip.
| arr_dest | pointer to the destination array |
| arr_src | pointer to the source array |
| arr_len | count of bytes to be copied from arr_src to arr_dest |
| void * dsps_memset_aes3 | ( | void * | arr_dest, |
| uint8_t | set_val, | ||
| size_t | set_size ) |
memory set function using esp32s3 TIE
The extension (_aes3) is optimized for esp32S3 chip.
| arr_dest | pointer to the destination array |
| set_val | byte value, the dest array will be set with |
| set_size | count of bytes, the dest array will be set with |