Lines Matching defs:vlist
28 va_list vlist;
31 LIBC_INLINE ArgList(va_list vlist) { va_copy(this->vlist, vlist); }
32 LIBC_INLINE ArgList(ArgList &other) { va_copy(this->vlist, other.vlist); }
33 LIBC_INLINE ~ArgList() { va_end(this->vlist); }
36 va_copy(vlist, rhs.vlist);
40 template <class T> LIBC_INLINE T next_var() { return va_arg(vlist, T); }