Home | History | Annotate | Download | only in libxml2

Lines Matching refs:VA_COPY

32  * The following VA_COPY was coded following an example in
37 #ifndef VA_COPY
39 #define VA_COPY(dest, src) va_copy(dest, src)
42 #define VA_COPY(dest,src) __va_copy(dest, src)
45 #define VA_COPY(dest,src) (dest) = (src)
48 #define VA_COPY(dest,src) memcpy((char *)(dest),(char *)(src),sizeof(va_list))
4488 VA_COPY(locarg, argptr);
4500 VA_COPY(locarg, argptr);