HomeSort by relevance Sort by last modified time
    Searched defs:va_arg (Results 1 - 25 of 47) sorted by null

1 2

  /external/clang/test/FixIt/
no-macro-fixit.c 4 #define va_arg(ap, type) __builtin_va_arg(ap, type) macro
12 while (value = va_arg(values, int)) { // expected-warning {{using the result of an assignment as a condition without parentheses}} \
  /device/linaro/bootloader/edk2/StdLib/Include/
stdarg.h 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
14 an argument to another function; if the receiving function invokes the va_arg macro
18 The va_start and va_arg macros must be implemented as macros, not as actual
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.
56 that subsequent successive invocations of va_arg will
76 The va_arg macro expands to an expression that has the type and value of
78 va_list ap initialized by va_start. Each invocation of va_arg modifies ap
86 Synopsys: type va_arg(va_list ap, type);
99 #define va_arg macro
101 #define va_arg macro
    [all...]
  /external/syslinux/efi32/include/efi/
efistdarg.h 29 #define va_arg(ap,t) ( *(t *)((ap += _INTSIZEOF(t)) - _INTSIZEOF(t)) ) macro
  /external/syslinux/efi64/include/efi/
efistdarg.h 29 #define va_arg(ap,t) ( *(t *)((ap += _INTSIZEOF(t)) - _INTSIZEOF(t)) ) macro
  /external/syslinux/gnu-efi/gnu-efi-3.0/inc/
efistdarg.h 29 #define va_arg(ap,t) ( *(t *)((ap += _INTSIZEOF(t)) - _INTSIZEOF(t)) ) macro
  /external/syslinux/gpxe/src/include/
stdarg.h 8 #define va_arg( ap, type ) __builtin_va_arg ( ap, type ) macro
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
_mingw_stdarg.h 20 #ifndef va_arg
21 #define va_arg _crt_va_arg macro
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
stdarg.h 47 #define va_arg(ap, type) \ macro
67 #define va_arg(ap, type) \ macro
  /external/clang/lib/Headers/
stdarg.h 35 #define va_arg(ap, type) __builtin_va_arg(ap, type) macro
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/
stdarg.h 35 #define va_arg(ap, type) __builtin_va_arg(ap, type) macro
  /prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/
stdarg.h 35 #define va_arg(ap, type) __builtin_va_arg(ap, type) macro
  /prebuilts/clang/host/darwin-x86/clang-4053586/lib64/clang/5.0/include/
stdarg.h 35 #define va_arg(ap, type) __builtin_va_arg(ap, type) macro
  /prebuilts/clang/host/darwin-x86/clang-4393122/lib64/clang/5.0.1/include/
stdarg.h 35 #define va_arg(ap, type) __builtin_va_arg(ap, type) macro
  /prebuilts/clang/host/darwin-x86/clang-4479392/lib64/clang/5.0.2/include/
stdarg.h 35 #define va_arg(ap, type) __builtin_va_arg(ap, type) macro
  /prebuilts/clang/host/darwin-x86/clang-4579689/lib64/clang/6.0.1/include/
stdarg.h 35 #define va_arg(ap, type) __builtin_va_arg(ap, type) macro
  /prebuilts/clang/host/darwin-x86/clang-4630689/lib64/clang/6.0.1/include/
stdarg.h 35 #define va_arg(ap, type) __builtin_va_arg(ap, type) macro
  /prebuilts/clang/host/darwin-x86/clang-4639204/lib64/clang/6.0.1/include/
stdarg.h 35 #define va_arg(ap, type) __builtin_va_arg(ap, type) macro
  /prebuilts/clang/host/darwin-x86/clang-4691093/lib64/clang/6.0.2/include/
stdarg.h 35 #define va_arg(ap, type) __builtin_va_arg(ap, type) macro
  /prebuilts/clang/host/linux-x86/clang-3289846/lib64/clang/3.8/include/
stdarg.h 35 #define va_arg(ap, type) __builtin_va_arg(ap, type) macro
  /prebuilts/clang/host/linux-x86/clang-3859424/lib64/clang/4.0/include/
stdarg.h 35 #define va_arg(ap, type) __builtin_va_arg(ap, type) macro
  /prebuilts/clang/host/linux-x86/clang-4053586/lib64/clang/5.0/include/
stdarg.h 35 #define va_arg(ap, type) __builtin_va_arg(ap, type) macro
  /prebuilts/clang/host/linux-x86/clang-4393122/lib64/clang/5.0.1/include/
stdarg.h 35 #define va_arg(ap, type) __builtin_va_arg(ap, type) macro
  /prebuilts/clang/host/linux-x86/clang-4479392/lib64/clang/5.0.2/include/
stdarg.h 35 #define va_arg(ap, type) __builtin_va_arg(ap, type) macro
  /prebuilts/clang/host/linux-x86/clang-4579689/lib64/clang/6.0.1/include/
stdarg.h 35 #define va_arg(ap, type) __builtin_va_arg(ap, type) macro
  /prebuilts/clang/host/linux-x86/clang-4630689/lib64/clang/6.0.1/include/
stdarg.h 35 #define va_arg(ap, type) __builtin_va_arg(ap, type) macro

Completed in 681 milliseconds

1 2