Home
last modified time | relevance | path

Searched refs:swapped_args (Results 1 – 1 of 1) sorted by relevance

/external/python/cpython2/Modules/_ctypes/
D_ctypes.c1843 PyObject *swapped_args; in CreateSwappedType() local
1847 swapped_args = PyTuple_New(PyTuple_GET_SIZE(args)); in CreateSwappedType()
1848 if (!swapped_args) in CreateSwappedType()
1861 Py_DECREF(swapped_args); in CreateSwappedType()
1865 PyTuple_SET_ITEM(swapped_args, 0, name); in CreateSwappedType()
1869 PyTuple_SET_ITEM(swapped_args, i, v); in CreateSwappedType()
1874 result = (PyTypeObject *)PyType_Type.tp_new(type, swapped_args, kwds); in CreateSwappedType()
1875 Py_DECREF(swapped_args); in CreateSwappedType()