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
73 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_quaternion_product_f32()
106 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_quaternion_product_single_f32()
128 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_quaternion2rotation_f32()
140 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_quaternion2rotation_f32()
159 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_rotation2quaternion_f32()
171 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_rotation2quaternion_f32()
190 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_quaternion_normalize_f32()
202 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_quaternion_normalize_f32()
221 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_quaternion_norm_f32()
233 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_quaternion_norm_f32()
252 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_quaternion_conjugate_f32()
264 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_quaternion_conjugate_f32()
283 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_quaternion_inverse_f32()
295 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_quaternion_inverse_f32()
334 Py_VISIT(GETSTATE(m)->error); in cmsisdsp_traverse()
339 Py_CLEAR(GETSTATE(m)->error); in cmsisdsp_clear()
380 st->error = PyErr_NewException(MODNAME".Error", NULL, NULL); in CAT()
381 if (st->error == NULL) { in CAT()