doc(args): make sure function declarations have the same arguments names (#67)

Co-authored-by: Koen <koen@gsf.engineering>
pull/65/head
KoenVda88 3 years ago committed by GitHub
parent 8d5aae1e01
commit 60e1e88f45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -403,38 +403,38 @@ float64_t arm_kullback_leibler_f64(const float64_t * pSrcA,
* @brief Minimum value of a Q7 vector. * @brief Minimum value of a Q7 vector.
* @param[in] pSrc is input pointer * @param[in] pSrc is input pointer
* @param[in] blockSize is the number of samples to process * @param[in] blockSize is the number of samples to process
* @param[out] result is output pointer * @param[out] pResult is output pointer
* @param[in] index is the array index of the minimum value in the input buffer. * @param[in] pIndex is the array index of the minimum value in the input buffer.
*/ */
void arm_min_q7( void arm_min_q7(
const q7_t * pSrc, const q7_t * pSrc,
uint32_t blockSize, uint32_t blockSize,
q7_t * result, q7_t * pResult,
uint32_t * index); uint32_t * pIndex);
/** /**
* @brief Minimum value of absolute values of a Q7 vector. * @brief Minimum value of absolute values of a Q7 vector.
* @param[in] pSrc is input pointer * @param[in] pSrc is input pointer
* @param[in] blockSize is the number of samples to process * @param[in] blockSize is the number of samples to process
* @param[out] result is output pointer * @param[out] pResult is output pointer
* @param[in] index is the array index of the minimum value in the input buffer. * @param[in] pIndex is the array index of the minimum value in the input buffer.
*/ */
void arm_absmin_q7( void arm_absmin_q7(
const q7_t * pSrc, const q7_t * pSrc,
uint32_t blockSize, uint32_t blockSize,
q7_t * result, q7_t * pResult,
uint32_t * index); uint32_t * pIndex);
/** /**
* @brief Minimum value of absolute values of a Q7 vector. * @brief Minimum value of absolute values of a Q7 vector.
* @param[in] pSrc is input pointer * @param[in] pSrc is input pointer
* @param[in] blockSize is the number of samples to process * @param[in] blockSize is the number of samples to process
* @param[out] result is output pointer * @param[out] pResult is output pointer
*/ */
void arm_absmin_no_idx_q7( void arm_absmin_no_idx_q7(
const q7_t * pSrc, const q7_t * pSrc,
uint32_t blockSize, uint32_t blockSize,
q7_t * result); q7_t * pResult);
/** /**

@ -42,7 +42,7 @@
@param[in] pSrcA points to the first input vector @param[in] pSrcA points to the first input vector
@param[in] pSrcB points to the second input vector @param[in] pSrcB points to the second input vector
@param[in] blockSize number of samples in input vector @param[in] blockSize number of samples in input vector
@param[out] result mean square error @param[out] pResult mean square error
@return none @return none
*/ */
@ -55,7 +55,7 @@ void arm_mse_f32(
const float32_t * pSrcA, const float32_t * pSrcA,
const float32_t * pSrcB, const float32_t * pSrcB,
uint32_t blockSize, uint32_t blockSize,
float32_t * result) float32_t * pResult)
{ {
float32x4_t vecA, vecB; float32x4_t vecA, vecB;
@ -98,7 +98,7 @@ void arm_mse_f32(
sum = vecAddAcrossF32Mve(vecSum); sum = vecAddAcrossF32Mve(vecSum);
/* Store result in destination buffer */ /* Store result in destination buffer */
*result = sum / blockSize; *pResult = sum / blockSize;
} }
@ -109,7 +109,7 @@ void arm_mse_f32(
const float32_t * pSrcA, const float32_t * pSrcA,
const float32_t * pSrcB, const float32_t * pSrcB,
uint32_t blockSize, uint32_t blockSize,
float32_t * result) float32_t * pResult)
{ {
float32x4_t vecA, vecB; float32x4_t vecA, vecB;
@ -163,7 +163,7 @@ void arm_mse_f32(
} }
/* Store result in destination buffer */ /* Store result in destination buffer */
*result = sum / blockSize; *pResult = sum / blockSize;
} }
#endif #endif
@ -179,7 +179,7 @@ void arm_mse_f32(
const float32_t * pSrcA, const float32_t * pSrcA,
const float32_t * pSrcB, const float32_t * pSrcB,
uint32_t blockSize, uint32_t blockSize,
float32_t * result) float32_t * pResult)
{ {
uint32_t blkCnt; /* Loop counter */ uint32_t blkCnt; /* Loop counter */
@ -237,7 +237,7 @@ void arm_mse_f32(
} }
/* Store result in destination buffer */ /* Store result in destination buffer */
*result = sum / blockSize; *pResult = sum / blockSize;
} }
#endif /* end of test for vector instruction availability */ #endif /* end of test for vector instruction availability */

@ -42,7 +42,7 @@
@param[in] pSrcA points to the first input vector @param[in] pSrcA points to the first input vector
@param[in] pSrcB points to the second input vector @param[in] pSrcB points to the second input vector
@param[in] blockSize number of samples in input vector @param[in] blockSize number of samples in input vector
@param[out] result mean square error @param[out] pResult mean square error
@return none @return none
*/ */
@ -50,7 +50,7 @@ void arm_mse_f64(
const float64_t * pSrcA, const float64_t * pSrcA,
const float64_t * pSrcB, const float64_t * pSrcB,
uint32_t blockSize, uint32_t blockSize,
float64_t * result) float64_t * pResult)
{ {
@ -126,7 +126,7 @@ void arm_mse_f64(
} }
/* Store result in destination buffer */ /* Store result in destination buffer */
*result = sum / blockSize; *pResult = sum / blockSize;
} }

Loading…
Cancel
Save