|
RENEWLab
1.1.0
RENEW project
|

Functions | |
| void * | mufft_alloc (size_t size) |
| Allocate aligned storage suitable for muFFT. Must be freed with mufft_free. More... | |
| void * | mufft_calloc (size_t size) |
| Allocate zeroed out aligned storage suitable for muFFT. Same as calloc(), but aligned. Must be freed with mufft_free. More... | |
| void | mufft_free (void *ptr) |
| Free previously allocated storage obtained from mufft_alloc or mufft_calloc. More... | |
| void* mufft_alloc | ( | size_t | size | ) |
Allocate aligned storage suitable for muFFT. Must be freed with mufft_free.
| size | Number of bytes to allocate. |
NULL. 
| void* mufft_calloc | ( | size_t | size | ) |
Allocate zeroed out aligned storage suitable for muFFT. Same as calloc(), but aligned. Must be freed with mufft_free.
| size | Number of bytes to allocate. |
NULL. | void mufft_free | ( | void * | ptr | ) |
Free previously allocated storage obtained from mufft_alloc or mufft_calloc.
| ptr | Pointer to be freed. Can be NULL in which case nothing happens. |
