Home
last modified time | relevance | path

Searched refs:stepped_up (Results 1 – 4 of 4) sorted by relevance

/external/python/cpython2/Objects/
Denumobject.c86 PyObject *stepped_up; in enum_next_long() local
104 stepped_up = PyNumber_Add(next_index, one); in enum_next_long()
105 if (stepped_up == NULL) { in enum_next_long()
109 en->en_longindex = stepped_up; in enum_next_long()
/external/python/cpython3/Objects/
Denumobject.c105 PyObject *stepped_up; in enum_next_long() local
118 stepped_up = PyNumber_Add(next_index, _PyLong_One); in enum_next_long()
119 if (stepped_up == NULL) { in enum_next_long()
123 en->en_longindex = stepped_up; in enum_next_long()
/external/python/cpython2/Modules/
Ditertoolsmodule.c3354 PyObject *stepped_up; in count_nextlong() local
3365 stepped_up = PyNumber_Add(long_cnt, lz->long_step); in count_nextlong()
3366 if (stepped_up == NULL) in count_nextlong()
3368 lz->long_cnt = stepped_up; in count_nextlong()
/external/python/cpython3/Modules/
Ditertoolsmodule.c4111 PyObject *stepped_up; in count_nextlong() local
4122 stepped_up = PyNumber_Add(long_cnt, lz->long_step); in count_nextlong()
4123 if (stepped_up == NULL) in count_nextlong()
4125 lz->long_cnt = stepped_up; in count_nextlong()