Searched refs:quotient (Results 1 – 9 of 9) sorted by relevance
| /cmsis-dsp-latest/PythonWrapper/examples/kws_example/kws/ |
| D | AppNodes.h | 179 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,"ient,&shift); in dsp_zcr_q15() 259 arm_shift_q15("ient,shift,"ient,1); in dsp_zcr_q15() 260 return(quotient); in dsp_zcr_q15() 264 return(quotient); in dsp_zcr_q15()
|
| /cmsis-dsp-latest/Source/FastMathFunctions/ |
| D | arm_divide_q15.c | 62 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()
|
| D | arm_divide_q31.c | 57 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/ |
| D | arm_mfcc_q31.c | 100 q31_t quotient; in arm_mfcc_q31() local 103 status = arm_divide_q31(0x7FFFFFFF,m,"ient,&shift); in arm_mfcc_q31() 109 arm_scale_q31(pSrc,quotient,shift,pSrc,S->fftLen); in arm_mfcc_q31()
|
| D | arm_mfcc_q15.c | 99 q15_t quotient; in arm_mfcc_q15() local 102 status = arm_divide_q15(0x7FFF,m,"ient,&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/ |
| D | appnodes.py | 85 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)
|
| D | kws.ipynb | 1185 " # 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/ |
| D | fast_math_functions.h | 323 q15_t *quotient, 340 q31_t *quotient,
|
| /cmsis-dsp-latest/PythonWrapper/examples/ |
| D | Noise suppression.ipynb | 1262 " 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 …]
|