Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
Dmystrtoul.c99 register int ovlimit; /* required digits to overflow */ in PyOS_strtoul() local
203 ovlimit = digitlimit[base]; in PyOS_strtoul()
207 if (ovlimit > 0) /* no overflow check required */ in PyOS_strtoul()
212 if (ovlimit < 0) /* guaranteed overflow */ in PyOS_strtoul()
231 --ovlimit; in PyOS_strtoul()