Lines Matching +full:- +full:o

1 /* ----------------------------------------------------------------------
4 * Description: C code for the CMSIS-DSP Python wrapper
9 * Target Processor: Cortex-M cores
10 * -------------------------------------------------------------------- */
12 * Copyright (C) 2010-2021 ARM Limited or its affiliates. All rights reserved.
14 * SPDX-License-Identifier: Apache-2.0
20 * www.apache.org/licenses/LICENSE-2.0
62 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_cmplx_conj_f32()
75 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_cmplx_conj_f32()
95 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_cmplx_conj_q31()
108 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_cmplx_conj_q31()
128 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_cmplx_conj_q15()
141 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_cmplx_conj_q15()
161 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_cmplx_mag_squared_f32()
174 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_cmplx_mag_squared_f32()
193 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_cmplx_mag_squared_f64()
206 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_cmplx_mag_squared_f64()
226 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_cmplx_mag_squared_q31()
239 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_cmplx_mag_squared_q31()
259 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_cmplx_mag_squared_q15()
272 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_cmplx_mag_squared_q15()
297 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_cmplx_mag_f32()
310 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_cmplx_mag_f32()
329 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_cmplx_mag_f64()
342 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_cmplx_mag_f64()
362 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_cmplx_mag_q31()
375 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_cmplx_mag_q31()
395 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_cmplx_mag_q15()
408 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_cmplx_mag_q15()
427 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_cmplx_mag_fast_q15()
440 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_cmplx_mag_fast_q15()
589 PyObject *pythonResult = Py_BuildValue("O",pCmplxDstOBJ); in cmsis_arm_cmplx_mult_real_q15()
626 PyObject *pythonResult = Py_BuildValue("O",pCmplxDstOBJ); in cmsis_arm_cmplx_mult_real_q31()
663 PyObject *pythonResult = Py_BuildValue("O",pCmplxDstOBJ); in cmsis_arm_cmplx_mult_real_f32()
702 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_cmplx_mult_cmplx_q15()
739 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_cmplx_mult_cmplx_q31()
776 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_cmplx_mult_cmplx_f32()
812 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_cmplx_mult_cmplx_f64()
858 Py_VISIT(GETSTATE(m)->error); in cmsisdsp_traverse()
863 Py_CLEAR(GETSTATE(m)->error); in cmsisdsp_clear()
904 st->error = PyErr_NewException(MODNAME".Error", NULL, NULL); in CAT()
905 if (st->error == NULL) { in CAT()