Home
last modified time | relevance | path

Searched refs:pffft_aligned_malloc (Results 1 – 9 of 9) sorted by relevance

/external/pffft/
Dtest_pffft.c79 pffft_scalar *X = pffft_aligned_malloc((unsigned)Nfloat * sizeof(pffft_scalar)); in test()
80 pffft_scalar *Y = pffft_aligned_malloc((unsigned)Nfloat * sizeof(pffft_scalar)); in test()
81 pffft_scalar *R = pffft_aligned_malloc((unsigned)Nfloat * sizeof(pffft_scalar)); in test()
82 pffft_scalar *Z = pffft_aligned_malloc((unsigned)Nfloat * sizeof(pffft_scalar)); in test()
83 pffft_scalar *W = pffft_aligned_malloc((unsigned)Nfloat * sizeof(pffft_scalar)); in test()
Dpffft.h208 void *pffft_aligned_malloc(size_t nb_bytes);
Dpffft.c110 #define FUNC_ALIGNED_MALLOC pffft_aligned_malloc
Dpffft_common.c57 void *pffft_aligned_malloc(size_t nb_bytes) { return Valigned_malloc(nb_bytes); } in pffft_aligned_malloc() function
Dpffastconv.c29 return pffft_aligned_malloc(nb_bytes); in pffastconv_malloc()
Dpffft.hpp367 return (T*)pffft_aligned_malloc( length * sizeof(T) ); in alignedAlloc()
/external/webrtc/modules/audio_processing/utility/
Dpffft_wrapper_unittest.cc36 pffft_aligned_malloc(fft_size * (complex_fft ? 2 : 1) * sizeof(float))); in AllocateScratchBuffer()
64 float* in = static_cast<float*>(pffft_aligned_malloc(num_bytes)); in PffftValidateWrapper()
65 float* out = static_cast<float*>(pffft_aligned_malloc(num_bytes)); in PffftValidateWrapper()
Dpffft_wrapper.cc24 return static_cast<float*>(pffft_aligned_malloc(size * sizeof(float))); in AllocatePffftBuffer()
/external/oss-fuzz/projects/pffft/
Dpffft_fuzzer.cc55 return static_cast<float*>(pffft_aligned_malloc(number_of_bytes)); in AllocatePffftBuffer()