Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dgenobject.c1491 while (state->value_numfree) { in _PyAsyncGen_ClearFreeLists()
1493 o = state->value_freelist[--state->value_numfree]; in _PyAsyncGen_ClearFreeLists()
1512 state->value_numfree = -1; in _PyAsyncGen_Fini()
1760 assert(state->value_numfree != -1); in async_gen_wrapped_val_dealloc()
1762 if (state->value_numfree < _PyAsyncGen_MAXFREELIST) { in async_gen_wrapped_val_dealloc()
1764 state->value_freelist[state->value_numfree++] = o; in async_gen_wrapped_val_dealloc()
1833 assert(state->value_numfree != -1); in _PyAsyncGenValueWrapperNew()
1835 if (state->value_numfree) { in _PyAsyncGenValueWrapperNew()
1836 state->value_numfree--; in _PyAsyncGenValueWrapperNew()
1837 o = state->value_freelist[state->value_numfree]; in _PyAsyncGenValueWrapperNew()
/third_party/python/Include/internal/
Dpycore_interp.h148 int value_numfree; member