Lines Matching refs:alloced
1201 * alloced entries.
1204 Py_ssize_t alloced;
1553 ms->alloced = (list_size + 1) / 2;
1555 /* ms->alloced describes how many keys will be stored at
1557 ms->alloced is capped at half of MERGESTATE_TEMP_SIZE. */
1558 if (MERGESTATE_TEMP_SIZE / 2 < ms->alloced)
1559 ms->alloced = MERGESTATE_TEMP_SIZE / 2;
1560 ms->a.values = &ms->temparray[ms->alloced];
1563 ms->alloced = MERGESTATE_TEMP_SIZE;
1596 if (need <= ms->alloced)
1612 ms->alloced = need;
1620 #define MERGE_GETMEM(MS, NEED) ((NEED) <= (MS)->alloced ? 0 : \