Lines Matching refs:small
22 acc->small = PyList_New(0); in _PyAccu_Init()
23 if (acc->small == NULL) in _PyAccu_Init()
31 Py_ssize_t nsmall = PyList_GET_SIZE(acc->small); in flush_accumulator()
40 joined = join_list_unicode(acc->small); in flush_accumulator()
43 if (PyList_SetSlice(acc->small, 0, nsmall, NULL)) { in flush_accumulator()
60 if (PyList_Append(acc->small, unicode)) in _PyAccu_Accumulate()
62 nsmall = PyList_GET_SIZE(acc->small); in _PyAccu_Accumulate()
82 Py_CLEAR(acc->small); in _PyAccu_FinishAsList()
97 list = acc->small; in _PyAccu_Finish()
98 acc->small = NULL; in _PyAccu_Finish()
113 Py_CLEAR(acc->small); in _PyAccu_Destroy()