Home
last modified time | relevance | path

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

/third_party/python/Objects/
Dfloatobject.c929 Py_ssize_t buflen, mybuflen=100; in double_round() local
947 if (buflen + 8 > mybuflen) { in double_round()
948 mybuflen = buflen+8; in double_round()
949 mybuf = (char *)PyMem_Malloc(mybuflen); in double_round()
956 PyOS_snprintf(mybuf, mybuflen, "%s0%se%d", (sign ? "-" : ""), in double_round()