• Home
  • Raw
  • Download

Lines Matching refs:PyObject

14 static PyObject *
15 _heapq_heappush_impl(PyObject *module, PyObject *heap, PyObject *item);
17 static PyObject *
18 _heapq_heappush(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _heapq_heappush()
20 PyObject *return_value = NULL; in _heapq_heappush()
21 PyObject *heap; in _heapq_heappush()
22 PyObject *item; in _heapq_heappush()
48 static PyObject *
49 _heapq_heappop_impl(PyObject *module, PyObject *heap);
51 static PyObject *
52 _heapq_heappop(PyObject *module, PyObject *arg) in _heapq_heappop()
54 PyObject *return_value = NULL; in _heapq_heappop()
55 PyObject *heap; in _heapq_heappop()
85 static PyObject *
86 _heapq_heapreplace_impl(PyObject *module, PyObject *heap, PyObject *item);
88 static PyObject *
89 _heapq_heapreplace(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _heapq_heapreplace()
91 PyObject *return_value = NULL; in _heapq_heapreplace()
92 PyObject *heap; in _heapq_heapreplace()
93 PyObject *item; in _heapq_heapreplace()
122 static PyObject *
123 _heapq_heappushpop_impl(PyObject *module, PyObject *heap, PyObject *item);
125 static PyObject *
126 _heapq_heappushpop(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _heapq_heappushpop()
128 PyObject *return_value = NULL; in _heapq_heappushpop()
129 PyObject *heap; in _heapq_heappushpop()
130 PyObject *item; in _heapq_heappushpop()
156 static PyObject *
157 _heapq_heapify_impl(PyObject *module, PyObject *heap);
159 static PyObject *
160 _heapq_heapify(PyObject *module, PyObject *arg) in _heapq_heapify()
162 PyObject *return_value = NULL; in _heapq_heapify()
163 PyObject *heap; in _heapq_heapify()
185 static PyObject *
186 _heapq__heappop_max_impl(PyObject *module, PyObject *heap);
188 static PyObject *
189 _heapq__heappop_max(PyObject *module, PyObject *arg) in _heapq__heappop_max()
191 PyObject *return_value = NULL; in _heapq__heappop_max()
192 PyObject *heap; in _heapq__heappop_max()
214 static PyObject *
215 _heapq__heapreplace_max_impl(PyObject *module, PyObject *heap,
216 PyObject *item);
218 static PyObject *
219 _heapq__heapreplace_max(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _heapq__heapreplace_max()
221 PyObject *return_value = NULL; in _heapq__heapreplace_max()
222 PyObject *heap; in _heapq__heapreplace_max()
223 PyObject *item; in _heapq__heapreplace_max()
249 static PyObject *
250 _heapq__heapify_max_impl(PyObject *module, PyObject *heap);
252 static PyObject *
253 _heapq__heapify_max(PyObject *module, PyObject *arg) in _heapq__heapify_max()
255 PyObject *return_value = NULL; in _heapq__heapify_max()
256 PyObject *heap; in _heapq__heapify_max()