Home
last modified time | relevance | path

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

/external/fmtlib/include/fmt/
Dostream.h22 template <class Char> class formatbuf : public std::basic_streambuf<Char> {
30 formatbuf(buffer<Char>& buf) : buffer_(buf) {} in formatbuf() function
109 formatbuf<Char> format_buf(buf);
/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()
960 (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()