Searched defs:OVERALLOCATE_FACTOR (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython3/Objects/
H A Dbytesobject.c3148 # define OVERALLOCATE_FACTOR 2 macro
3151 # define OVERALLOCATE_FACTOR 4 macro
3243 && allocated <= (PY_SSIZE_T_MAX - allocated / OVERALLOCATE_FACTOR)) {
3245 allocated += allocated / OVERALLOCATE_FACTOR;
H A Dunicodeobject.c168 # define OVERALLOCATE_FACTOR 2 macro
171 # define OVERALLOCATE_FACTOR 4 macro
13460 && newlen <= (PY_SSIZE_T_MAX - newlen / OVERALLOCATE_FACTOR)) {
13462 newlen += newlen / OVERALLOCATE_FACTOR;
13473 && newlen <= (PY_SSIZE_T_MAX - newlen / OVERALLOCATE_FACTOR)) {
13475 newlen += newlen / OVERALLOCATE_FACTOR;
13510 #undef OVERALLOCATE_FACTOR macro

Completed in 335 milliseconds