Home | History | Annotate | Download | only in Include

Lines Matching full:that

25     the terms and conditions of the BSD License that accompanies this distribution.

55 @param ap An object of type va_list that is to be initialized such
56 that subsequent successive invocations of va_arg will
63 class, with a function of array type, or with a type that
64 is not compatible with the type that results after
76 The va_arg macro expands to an expression that has the type and value of
79 so that the values of successive arguments are returned in turn. The
80 parameter type is a type name specified such that the type of a pointer to
81 an object that has the specified type can be obtained simply by postfixing
88 @param ap An object of type va_list that was initialized by a prior
93 @return The first invocation of the va_arg macro after that of the
94 va_start macro returns the value of the argument after that
107 variable argument list was referred to by the expansion of va_start that
112 The va_end macro may modify ap so that it is no longer usable (without an
118 invocation of va_start, that will no longer be referenced.
140 This breaks for compiler environments that define va_list as an array or structure.