Home | History | Annotate | Download | only in Include

Lines Matching defs:va_end

2     This header, <stdarg.h>, declares type va_list and defines macros: va_start, va_arg, va_end;

11 macros va_start, va_arg, and va_end. If access to the varying arguments
16 and must be passed to the va_end macro prior to any further reference to ap.
19 functions. The va_start and va_end macros must be invoked in the
38 macros va_start, va_arg, and va_end.
51 The va_start macro initializes ap for subsequent use by va_arg and va_end.
106 The va_end macro facillitates a normal return from the function whose
110 Synopsys: void va_end(va_list ap);
112 The va_end macro may modify ap so that it is no longer usable (without an
114 invocation of the va_start macro, or if the va_end macro is not invoked
121 #define va_end __builtin_va_end
123 #define va_end VA_END