Home | History | Annotate | Download | only in libxml2

Lines Matching refs:VA_COPY

28  * The following VA_COPY was coded following an example in
34 #ifndef VA_COPY
36 #define VA_COPY(dest, src) va_copy(dest, src)
39 #define VA_COPY(dest,src) __va_copy(dest, src)
41 #define VA_COPY(dest,src) (dest) = (src)
4478 VA_COPY(locarg, argptr);
4490 VA_COPY(locarg, argptr);