Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Ddatetimemodule.c1181 size_t ntoappend; /* # of bytes to append to output buffer */ in wrap_strftime() local
1229 ntoappend = 1; in wrap_strftime()
1260 ntoappend = PyString_GET_SIZE(zreplacement); in wrap_strftime()
1299 ntoappend = PyString_GET_SIZE(Zreplacement); in wrap_strftime()
1311 ntoappend = PyString_GET_SIZE(freplacement); in wrap_strftime()
1316 ntoappend = 2; in wrap_strftime()
1323 assert(ntoappend >= 0); in wrap_strftime()
1324 if (ntoappend == 0) in wrap_strftime()
1326 while (usednew + ntoappend > totalnew) { in wrap_strftime()
1337 memcpy(pnew, ptoappend, ntoappend); in wrap_strftime()
[all …]