Lines Matching defs:new
232 Create a new mutex if needed. */
1591 * the new key. */
1692 /* Create a new Python thread state for this thread */
1695 Py_FatalError("Couldn't create thread-state for new thread");
1701 current = 0; /* new thread state is never current */
1733 but while this is very new (April 2003), the extra check
2184 _PyStackChunk *new = allocate_chunk(allocate_size, tstate->datastack_chunk);
2185 if (new == NULL) {
2192 tstate->datastack_chunk = new;
2193 tstate->datastack_limit = (PyObject **)(((char *)new) + allocate_size);
2194 // When new is the "root" chunk (i.e. new->previous == NULL), we can keep
2197 PyObject **res = &new->data[new->previous == NULL];