Home
last modified time | relevance | path

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

/external/curl/lib/
Dmprintf.c890 char formatbuf[32]="%"; in dprintf_formatf() local
891 char *fptr = &formatbuf[1]; in dprintf_formatf()
892 size_t left = sizeof(formatbuf)-strlen(formatbuf); in dprintf_formatf()
943 (sprintf)(work, formatbuf, p->data.dnum); in dprintf_formatf()
/external/python/cpython2/Objects/
Dstringobject.c4306 char formatbuf[FORMATBUFLEN]; in PyString_Format() local
4524 pbuf = formatbuf; in PyString_Format()
4526 sizeof(formatbuf), in PyString_Format()
4582 pbuf = formatbuf; in PyString_Format()
4583 len = formatchar(pbuf, sizeof(formatbuf), v); in PyString_Format()
Dunicodeobject.c8420 Py_UNICODE formatbuf[FORMATBUFLEN]; /* For format{int,char}() */ in PyUnicode_Format() local
8577 pbuf = formatbuf; in PyUnicode_Format()
8649 pbuf = formatbuf; in PyUnicode_Format()
8650 len = formatint(pbuf, sizeof(formatbuf)/sizeof(Py_UNICODE), in PyUnicode_Format()
8699 pbuf = formatbuf; in PyUnicode_Format()
8700 len = formatchar(pbuf, sizeof(formatbuf)/sizeof(Py_UNICODE), v); in PyUnicode_Format()