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
56 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_vlog_q15()
68 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_vlog_q15()
90 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_vlog_q31()
102 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_vlog_q31()
127 PyObject *pythonResult = Py_BuildValue("O",theReturnOBJ); in cmsis_arm_sin_f32()
150 PyObject *pythonResult = Py_BuildValue("O",theReturnOBJ); in cmsis_arm_sin_q31()
173 PyObject *pythonResult = Py_BuildValue("O",theReturnOBJ); in cmsis_arm_sin_q15()
196 PyObject *pythonResult = Py_BuildValue("O",theReturnOBJ); in cmsis_arm_cos_f32()
219 PyObject *pythonResult = Py_BuildValue("O",theReturnOBJ); in cmsis_arm_cos_q31()
242 PyObject *pythonResult = Py_BuildValue("O",theReturnOBJ); in cmsis_arm_cos_q15()
400 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_vexp_f32()
412 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_vexp_f32()
431 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_vexp_f64()
443 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_vexp_f64()
462 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_vlog_f32()
474 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_vlog_f32()
493 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_vlog_f64()
505 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_vlog_f64()
627 Py_VISIT(GETSTATE(m)->error); in cmsisdsp_traverse()
632 Py_CLEAR(GETSTATE(m)->error); in cmsisdsp_clear()
673 st->error = PyErr_NewException(MODNAME".Error", NULL, NULL); in CAT()
674 if (st->error == NULL) { in CAT()