#include <stdlib.h>
#include <complex>
#include <cstdint>
#include <cstring>
Go to the source code of this file.
|
void * | staffpad::vo::allocate (int32_t bytes) |
|
void | staffpad::vo::free (void *ptr) |
|
template<class T > |
void | staffpad::vo::copy (const T *src, T *dst, int32_t n) |
|
template<class T > |
void | staffpad::vo::add (const T *src1, const T *src2, T *dst, int32_t n) |
|
template<class T > |
void | staffpad::vo::subtract (const T *src1, const T *src2, T *dst, int32_t n) |
|
template<class T > |
void | staffpad::vo::constantMultiply (const T *src, T constant, T *dst, int32_t n) |
|
template<class T > |
void | staffpad::vo::constantMultiplyAndAdd (const T *src, T constant, T *dst, int32_t n) |
|
template<class T > |
void | staffpad::vo::multiply (const T *src1, const T *src2, T *dst, int32_t n) |
|
template<class T > |
void | staffpad::vo::setToZero (T *dst, int32_t n) |
|
template<class T > |
void | staffpad::vo::findMaxElement (const T *src, int32_t n, int32_t &maxIndex, T &maxValue) |
|
void | staffpad::vo::calcPhases (const std::complex< float > *src, float *dst, int32_t n) |
|
void | staffpad::vo::calcNorms (const std::complex< float > *src, float *dst, int32_t n) |
|
void | staffpad::vo::rotate (const float *oldPhase, const float *newPhase, std::complex< float > *dst, int32_t n) |
|