Home
last modified time | relevance | path

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

/external/curl/lib/
Dmprintf.c883 char formatbuf[32]="%"; in dprintf_formatf() local
884 char *fptr = &formatbuf[1]; in dprintf_formatf()
885 size_t left = sizeof(formatbuf)-strlen(formatbuf); in dprintf_formatf()
949 (sprintf)(work, formatbuf, p->data.dnum); in dprintf_formatf()
/external/python/cpython2/Objects/
Dstringobject.c4303 char formatbuf[FORMATBUFLEN]; in PyString_Format() local
4521 pbuf = formatbuf; in PyString_Format()
4523 sizeof(formatbuf), in PyString_Format()
4579 pbuf = formatbuf; in PyString_Format()
4580 len = formatchar(pbuf, sizeof(formatbuf), v); in PyString_Format()
Dunicodeobject.c8416 Py_UNICODE formatbuf[FORMATBUFLEN]; /* For format{int,char}() */ in PyUnicode_Format() local
8573 pbuf = formatbuf; in PyUnicode_Format()
8645 pbuf = formatbuf; in PyUnicode_Format()
8646 len = formatint(pbuf, sizeof(formatbuf)/sizeof(Py_UNICODE), in PyUnicode_Format()
8695 pbuf = formatbuf; in PyUnicode_Format()
8696 len = formatchar(pbuf, sizeof(formatbuf)/sizeof(Py_UNICODE), v); in PyUnicode_Format()