Lines Matching refs:asend_numfree
1670 while (state->asend_numfree) {
1672 o = state->asend_freelist[--state->asend_numfree];
1686 state->asend_numfree = -1;
1734 assert(state->asend_numfree != -1);
1736 if (state->asend_numfree < _PyAsyncGen_MAXFREELIST) {
1738 state->asend_freelist[state->asend_numfree++] = o;
1899 assert(state->asend_numfree != -1);
1901 if (state->asend_numfree) {
1902 state->asend_numfree--;
1903 o = state->asend_freelist[state->asend_numfree];