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
46 if (self->instance) in arm_sort_instance_f32_dealloc()
49 PyMem_Free(self->instance); in arm_sort_instance_f32_dealloc()
52 Py_TYPE(self)->tp_free((PyObject*)self); in arm_sort_instance_f32_dealloc()
61 self = (dsp_arm_sort_instance_f32Object *)type->tp_alloc(type, 0); in arm_sort_instance_f32_new()
66 self->instance = PyMem_Malloc(sizeof(arm_sort_instance_f32)); in arm_sort_instance_f32_new()
90 self->instance->alg=alg; in arm_sort_instance_f32_init()
91 self->instance->dir=dir; in arm_sort_instance_f32_init()
99 return(Py_BuildValue("i",(int)self->instance->alg)); in Method_arm_sort_instance_f32_alg()
105 return(Py_BuildValue("i",(int)self->instance->dir)); in Method_arm_sort_instance_f32_dir()
135 arm_sort_init_f32(selfS->instance,alg,dir); in cmsis_arm_sort_init_f32()
162 arm_sort_f32(selfS->instance,pSrc_converted,pDst,blockSize); in cmsis_arm_sort_f32()
165 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_sort_f32()
193 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_fill_f32()
219 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_fill_f64()
245 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_fill_q31()
271 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_fill_q15()
297 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_fill_q7()
317 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_copy_f32()
329 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_copy_f32()
348 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_copy_f64()
360 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_copy_f64()
380 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_copy_q7()
392 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_copy_q7()
412 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_copy_q15()
424 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_copy_q15()
444 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_copy_q31()
456 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_copy_q31()
483 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_q7_to_q31()
495 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_q7_to_q31()
517 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_q7_to_q15()
529 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_q7_to_q15()
551 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_q7_to_float()
563 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_q7_to_float()
587 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_q31_to_float()
599 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_q31_to_float()
623 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_float_to_q31()
635 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_float_to_q31()
655 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_float_to_q15()
667 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_float_to_q15()
687 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_float_to_q7()
699 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_float_to_q7()
719 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_q31_to_q15()
731 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_q31_to_q15()
751 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_q31_to_q7()
763 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_q31_to_q7()
783 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_q15_to_float()
795 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_q15_to_float()
815 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_q15_to_q31()
827 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_q15_to_q31()
847 if (PyArg_ParseTuple(args,"O",&pSrc)) in cmsis_arm_q15_to_q7()
859 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_q15_to_q7()
892 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_barycenter_f32()
924 PyObject *pythonResult = Py_BuildValue("O",pDstOBJ); in cmsis_arm_weighted_average_f32()
952 PyObject *pythonResult = Py_BuildValue("O",resultOBJ); in cmsis_arm_div_int64_to_int32()
1004 Py_VISIT(GETSTATE(m)->error); in cmsisdsp_traverse()
1009 Py_CLEAR(GETSTATE(m)->error); in cmsisdsp_clear()
1050 st->error = PyErr_NewException(MODNAME".Error", NULL, NULL); in CAT()
1051 if (st->error == NULL) { in CAT()