Home
last modified time | relevance | path

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

/cmsis-dsp-latest/PythonWrapper/examples/kws_example/kws/
DAppNodes.h179 q15_t *quotient, in arm_divide_q15() argument
194 *quotient = 0x8000; in arm_divide_q15()
198 *quotient = 0x7FFF; in arm_divide_q15()
220 *quotient=temp; in arm_divide_q15()
252 q15_t quotient; in dsp_zcr_q15() local
255 arm_status status=arm_divide_q15(k,blockSize-1,&quotient,&shift); in dsp_zcr_q15()
259 arm_shift_q15(&quotient,shift,&quotient,1); in dsp_zcr_q15()
260 return(quotient); in dsp_zcr_q15()
264 return(quotient); in dsp_zcr_q15()
/cmsis-dsp-latest/Source/FastMathFunctions/
Darm_divide_q15.c62 q15_t *quotient, in arm_divide_q15() argument
77 *quotient = -32768; in arm_divide_q15()
81 *quotient = 32767; in arm_divide_q15()
103 *quotient=temp; in arm_divide_q15()
Darm_divide_q31.c57 q31_t *quotient, in arm_divide_q31() argument
72 *quotient = 0x80000000; in arm_divide_q31()
76 *quotient = 0x7FFFFFFF; in arm_divide_q31()
98 *quotient=(q31_t)temp; in arm_divide_q31()
/cmsis-dsp-latest/Source/TransformFunctions/
Darm_mfcc_q31.c100 q31_t quotient; in arm_mfcc_q31() local
103 status = arm_divide_q31(0x7FFFFFFF,m,&quotient,&shift); in arm_mfcc_q31()
109 arm_scale_q31(pSrc,quotient,shift,pSrc,S->fftLen); in arm_mfcc_q31()
Darm_mfcc_q15.c99 q15_t quotient; in arm_mfcc_q15() local
102 status = arm_divide_q15(0x7FFF,m,&quotient,&shift); in arm_mfcc_q15()
108 arm_scale_q15(pSrc,quotient,shift,pSrc,S->fftLen); in arm_mfcc_q15()
/cmsis-dsp-latest/PythonWrapper/examples/kws_example/
Dappnodes.py85 status,quotient,shift_val=dsp.arm_divide_q15(k,len(f))
87 return(dsp.arm_shift_q31(np.array([quotient]),shift)[0])
89 return(quotient)
Dkws.ipynb1185 " # When k==len(f) normally quotient is 0x40000000 and shift 1 and we convert\n",
1187 " status,quotient,shift_val=dsp.arm_divide_q31(k,len(f))\n",
1189 " return(dsp.arm_shift_q31(np.array([quotient]),shift)[0])\n",
1191 " return(quotient)"
1437 " # When k==len(f) normally quotient is 0x4000 and shift 1 and we convert\n",
1439 " status,quotient,shift_val=dsp.arm_divide_q15(k,len(f))\n",
1441 " return(dsp.arm_shift_q15(np.array([quotient]),shift)[0])\n",
1443 " return(quotient)"
/cmsis-dsp-latest/Include/dsp/
Dfast_math_functions.h323 q15_t *quotient,
340 q31_t *quotient,
/cmsis-dsp-latest/PythonWrapper/examples/
DNoise suppression.ipynb1262 " quotient=0x7FFFFFFF\n",
1265 " # We compute the quotient\n",
1266 " status,quotient,shiftVal = dsp.arm_divide_q31(a,b)\n",
1268 " quotient=0x7FFFFFFF\n",
1271 " scalingQ31[k] = quotient\n",
1482 " quotient=0x7FFFFFFF\n",
1485 " # We compute the quotient\n",
1486 " status,quotient,shiftVal = dsp.arm_divide_q31(a,b)\n",
1488 " quotient=0x7FFFFFFF\n",
1491 " scalingQ31[k] = quotient\n",
[all …]