[][src]Function cmsis_dsp_sys_pregenerated::arm_conv_partial_q31

pub unsafe extern "C" fn arm_conv_partial_q31(
    pSrcA: *const q31_t,
    srcALen: u32,
    pSrcB: *const q31_t,
    srcBLen: u32,
    pDst: *mut q31_t,
    firstIndex: u32,
    numPoints: u32
) -> Type

@brief Partial convolution of Q31 sequences. @param[in] pSrcA points to the first input sequence. @param[in] srcALen length of the first input sequence. @param[in] pSrcB points to the second input sequence. @param[in] srcBLen length of the second input sequence. @param[out] pDst points to the block of output data @param[in] firstIndex is the first output sample to start with. @param[in] numPoints is the number of output points to be computed. @return Returns either ARM_MATH_SUCCESS if the function completed correctly or ARM_MATH_ARGUMENT_ERROR if the requested subset is not in the range [0 srcALen+srcBLen-2].