Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dcontext.c10 static PyContext *ctx_freelist = NULL; variable
326 ctx = ctx_freelist; in _context_alloc()
327 ctx_freelist = (PyContext *)ctx->ctx_weakreflist; in _context_alloc()
449 self->ctx_weakreflist = (PyObject *)ctx_freelist; in context_tp_dealloc()
450 ctx_freelist = self; in context_tp_dealloc()
1226 PyContext *ctx = ctx_freelist; in PyContext_ClearFreeList()
1227 ctx_freelist = (PyContext *)ctx->ctx_weakreflist; in PyContext_ClearFreeList()