Home
last modified time | relevance | path

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

/freebsd/contrib/openpam/lib/libpam/
H A Dopenpam_vasprintf.c46 va_list apcopy; in openpam_vasprintf() local
49 va_copy(apcopy, ap); in openpam_vasprintf()
53 ret = vsnprintf(*str, len + 1, fmt, apcopy); in openpam_vasprintf()
54 va_end(apcopy); in openpam_vasprintf()
/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Dformat_string.h35 va_list apcopy; in vformat_string() local
36 va_copy(apcopy, ap); in vformat_string()
37 int ret = ::vsnprintf(buf.data(), buf.size(), msg, apcopy); in vformat_string()
38 va_end(apcopy); in vformat_string()