HomeSort by relevance Sort by last modified time
    Searched refs:va_copy (Results 1 - 25 of 125) sorted by null

1 2 3 4 5

  /external/syslinux/com32/include/
stdarg.h 4 * This is just a wrapper for the gcc one, but defines va_copy()
12 #ifndef va_copy
13 #define va_copy(d,s) __va_copy(d,s) macro
  /bionic/tests/headers/posix/
stdarg_h.c 39 #if !defined(va_copy)
40 #error va_copy
  /device/linaro/bootloader/edk2/StdLib/Include/
stdarg.h 131 #define va_copy __builtin_va_copy macro
133 #define va_copy(s,d) (s) = (d) macro
143 #define __va_copy va_copy
  /bionic/tests/
stdarg_test.cpp 28 #if !defined(va_copy)
29 #error va_copy
  /external/libcxx/test/std/depr/depr.c.headers/
stdarg_h.pass.cpp 21 # ifndef va_copy
22 # error va_copy is not defined when c++ >= 11
  /external/libcxx/test/std/language.support/support.runtime/
cstdarg.pass.cpp 21 # ifndef va_copy
22 # error va_copy is not defined when c++ >= 11
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
_mingw_stdarg.h 32 #if !defined(va_copy) && \
34 #define va_copy _crt_va_copy macro
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/depr/depr.c.headers/
stdarg_h.pass.cpp 21 # ifndef va_copy
22 # error va_copy is not defined when c++ >= 11
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/language.support/support.runtime/
cstdarg.pass.cpp 21 # ifndef va_copy
22 # error va_copy is not defined when c++ >= 11
  /toolchain/binutils/binutils-2.27/libiberty/
xvasprintf.c 26 #if !defined (va_copy) && defined (__va_copy)
27 # define va_copy(d,s) __va_copy((d),(s)) macro
vprintf-support.c 26 #if !defined (va_copy) && defined (__va_copy)
27 # define va_copy(d,s) __va_copy((d),(s)) macro
49 #ifdef va_copy
50 va_copy (ap, args);
115 #ifdef va_copy
  /external/skia/src/ports/
SkDebug_android.cpp 25 va_copy(args2, args1);
  /external/skqp/src/ports/
SkDebug_android.cpp 25 va_copy(args2, args1);
  /external/syslinux/gpxe/src/include/
stdarg.h 10 #define va_copy( dest, src ) __builtin_va_copy ( dest, src ) macro
  /external/syslinux/com32/lib/
vasprintf.c 15 va_copy(ap1, ap);
asprintf.c 17 va_copy(ap1, ap);
  /external/mesa3d/src/gallium/include/pipe/
p_compiler.h 91 #ifndef va_copy
93 #define va_copy(dest, src) __va_copy((dest), (src)) macro
95 #define va_copy(dest, src) (dest) = (src) macro
  /external/tensorflow/tensorflow/core/lib/strings/
stringprintf.cc 40 va_copy(backup_ap, ap);
54 va_copy(backup_ap, ap);
71 va_copy(backup_ap, ap);
  /external/protobuf/src/google/protobuf/stubs/
stringprintf.cc 46 #ifndef va_copy
47 // Define va_copy for MSVC. This is a hack, assuming va_list is simply a
49 #define va_copy(dest, src) ((dest) = (src)) macro
64 va_copy(backup_ap, ap);
78 va_copy(backup_ap, ap);
95 va_copy(backup_ap, ap);
  /external/clang/lib/Headers/
stdarg.h 37 /* GCC always defines __va_copy, but does not define va_copy unless in c99 mode
43 #define va_copy(dest, src) __builtin_va_copy(dest, src) macro
  /prebuilts/clang/host/darwin-x86/clang-3289846/lib64/clang/3.8/include/
stdarg.h 37 /* GCC always defines __va_copy, but does not define va_copy unless in c99 mode
43 #define va_copy(dest, src) __builtin_va_copy(dest, src) macro
  /prebuilts/clang/host/darwin-x86/clang-3859424/lib64/clang/4.0/include/
stdarg.h 37 /* GCC always defines __va_copy, but does not define va_copy unless in c99 mode
43 #define va_copy(dest, src) __builtin_va_copy(dest, src) macro
  /prebuilts/clang/host/darwin-x86/clang-4053586/lib64/clang/5.0/include/
stdarg.h 37 /* GCC always defines __va_copy, but does not define va_copy unless in c99 mode
43 #define va_copy(dest, src) __builtin_va_copy(dest, src) macro
  /prebuilts/clang/host/darwin-x86/clang-4393122/lib64/clang/5.0.1/include/
stdarg.h 37 /* GCC always defines __va_copy, but does not define va_copy unless in c99 mode
43 #define va_copy(dest, src) __builtin_va_copy(dest, src) macro
  /prebuilts/clang/host/darwin-x86/clang-4479392/lib64/clang/5.0.2/include/
stdarg.h 37 /* GCC always defines __va_copy, but does not define va_copy unless in c99 mode
43 #define va_copy(dest, src) __builtin_va_copy(dest, src) macro

Completed in 703 milliseconds

1 2 3 4 5