Home
last modified time | relevance | path

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

/external/python/cpython2/Modules/
Ddatetimemodule.c1180 const char *ptoappend; /* ptr to string to append to output buffer */ in wrap_strftime() local
1228 ptoappend = pin - 1; in wrap_strftime()
1259 ptoappend = PyString_AS_STRING(zreplacement); in wrap_strftime()
1298 ptoappend = PyString_AS_STRING(Zreplacement); in wrap_strftime()
1310 ptoappend = PyString_AS_STRING(freplacement); in wrap_strftime()
1315 ptoappend = pin - 2; in wrap_strftime()
1322 assert(ptoappend != NULL); in wrap_strftime()
1337 memcpy(pnew, ptoappend, ntoappend); in wrap_strftime()
/external/python/cpython3/Modules/
D_datetimemodule.c1486 const char *ptoappend; /* ptr to string to append to output buffer */ in wrap_strftime() local
1513 ptoappend = pin - 1; in wrap_strftime()
1522 ptoappend = pin - 1; in wrap_strftime()
1550 ptoappend = PyBytes_AS_STRING(zreplacement); in wrap_strftime()
1563 ptoappend = PyUnicode_AsUTF8AndSize(Zreplacement, in wrap_strftime()
1565 if (ptoappend == NULL) in wrap_strftime()
1577 ptoappend = PyBytes_AS_STRING(freplacement); in wrap_strftime()
1582 ptoappend = pin - 2; in wrap_strftime()
1591 assert(ptoappend != NULL); in wrap_strftime()
1603 memcpy(pnew, ptoappend, ntoappend); in wrap_strftime()