Searched refs:argListCopy (Results 1 – 2 of 2) sorted by relevance
/external/pdfium/core/fxcrt/ |
D | widestring.cpp | 318 va_list argListCopy; in FormatV() local 319 va_copy(argListCopy, argList); in FormatV() 320 int maxLen = vswprintf(nullptr, 0, format, argListCopy); in FormatV() 321 va_end(argListCopy); in FormatV() 324 va_copy(argListCopy, argList); in FormatV() 325 auto guess = GuessSizeForVSWPrintf(format, argListCopy); in FormatV() 326 va_end(argListCopy); in FormatV() 334 va_copy(argListCopy, argList); in FormatV() 336 TryVSWPrintf(static_cast<size_t>(maxLen), format, argListCopy); in FormatV() 337 va_end(argListCopy); in FormatV()
|
D | bytestring.cpp | 117 va_list argListCopy; in FormatV() local 118 va_copy(argListCopy, argList); in FormatV() 119 int nMaxLen = vsnprintf(nullptr, 0, pFormat, argListCopy); in FormatV() 120 va_end(argListCopy); in FormatV() 131 va_copy(argListCopy, argList); in FormatV() 132 vsnprintf(buf, nMaxLen + 1, pFormat, argListCopy); in FormatV() 133 va_end(argListCopy); in FormatV()
|