Home | History | Annotate | Download | only in Objects

Lines Matching refs:alloced

1375      * alloced entries.
1378 Py_ssize_t alloced;
1403 ms->alloced = MERGESTATE_TEMP_SIZE;
1419 ms->alloced = MERGESTATE_TEMP_SIZE;
1429 if (need <= ms->alloced)
1441 ms->alloced = need;
1448 #define MERGE_GETMEM(MS, NEED) ((NEED) <= (MS)->alloced ? 0 : \