Lines Matching defs:growth
436 Py_ssize_t growth = bytes_len - avail;
440 if (growth < 0) {
446 self->ob_start -= growth;
465 Py_SIZE(self) + growth) < 0) {
468 modified. Depending on growth and lo, the behaviour is
471 If growth < 0 and lo != 0, the operation is completed, but a
476 self->ob_start += growth;
481 Py_SET_SIZE(self, Py_SIZE(self) + growth);
486 else if (growth > 0) {
487 if (Py_SIZE(self) > (Py_ssize_t)PY_SSIZE_T_MAX - growth) {
493 Py_SIZE(self) + growth) < 0) {