[][src]Function cmsis_dsp_sys_pregenerated::arm_conv_partial_opt_q7

pub unsafe extern "C" fn arm_conv_partial_opt_q7(
    pSrcA: *const q7_t,
    srcALen: u32,
    pSrcB: *const q7_t,
    srcBLen: u32,
    pDst: *mut q7_t,
    firstIndex: u32,
    numPoints: u32,
    pScratch1: *mut q15_t,
    pScratch2: *mut q15_t
) -> Type

@brief Partial convolution of Q7 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. @param[in] pScratch1 points to scratch buffer(of type q15_t) of size max(srcALen, srcBLen) + 2*min(srcALen, srcBLen) - 2. @param[in] pScratch2 points to scratch buffer (of type q15_t) of size min(srcALen, srcBLen). @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].