Lines Matching refs:alloced
1131 * alloced entries.
1134 Py_ssize_t alloced;
1486 ms->alloced = (list_size + 1) / 2;
1488 /* ms->alloced describes how many keys will be stored at
1490 ms->alloced is capped at half of MERGESTATE_TEMP_SIZE. */
1491 if (MERGESTATE_TEMP_SIZE / 2 < ms->alloced)
1492 ms->alloced = MERGESTATE_TEMP_SIZE / 2;
1493 ms->a.values = &ms->temparray[ms->alloced];
1496 ms->alloced = MERGESTATE_TEMP_SIZE;
1525 if (need <= ms->alloced)
1541 ms->alloced = need;
1549 #define MERGE_GETMEM(MS, NEED) ((NEED) <= (MS)->alloced ? 0 : \