Home
last modified time | relevance | path

Searched refs:__VA_ARGS__ (Results 1 – 25 of 209) sorted by relevance

123456789

/external/toybox/generated/
Dconfig.h2 #define USE_TOYBOX_CONTAINER(...) __VA_ARGS__
4 #define USE_TOYBOX_FIFREEZE(...) __VA_ARGS__
6 #define USE_TOYBOX_ICONV(...) __VA_ARGS__
8 #define USE_TOYBOX_FALLOCATE(...) __VA_ARGS__
10 #define USE_TOYBOX_UTMPX(...) __VA_ARGS__
12 #define USE_TOYBOX_SHADOW(...) __VA_ARGS__
14 #define USE_TOYBOX_ON_ANDROID(...) __VA_ARGS__
16 #define USE_BASENAME(...) __VA_ARGS__
18 #define USE_CAL(...) __VA_ARGS__
20 #define USE_CAT(...) __VA_ARGS__
[all …]
/external/jemalloc/test/include/test/
Dtest.h15 malloc_snprintf(message, sizeof(message), __VA_ARGS__); \
21 !=, "p", __VA_ARGS__)
23 ==, "p", __VA_ARGS__)
25 !=, "p", __VA_ARGS__)
27 ==, "p", __VA_ARGS__)
29 #define assert_c_eq(a, b, ...) assert_cmp(char, a, b, ==, !=, "c", __VA_ARGS__)
30 #define assert_c_ne(a, b, ...) assert_cmp(char, a, b, !=, ==, "c", __VA_ARGS__)
31 #define assert_c_lt(a, b, ...) assert_cmp(char, a, b, <, >=, "c", __VA_ARGS__)
32 #define assert_c_le(a, b, ...) assert_cmp(char, a, b, <=, >, "c", __VA_ARGS__)
33 #define assert_c_ge(a, b, ...) assert_cmp(char, a, b, >=, <, "c", __VA_ARGS__)
[all …]
/external/clang/test/Preprocessor/
Dmacro_fn_comma_swallow2.c14 # define A(...) [ __VA_ARGS__ ]
15 # define B(...) [ , __VA_ARGS__ ]
16 # define C(...) [ , ## __VA_ARGS__ ]
17 # define D(A,...) [ A , ## __VA_ARGS__ ]
18 # define E(A,...) [ __VA_ARGS__ ## A ]
22 # define A(__VA_ARGS__...) [ __VA_ARGS__ ] argument
23 # define B(__VA_ARGS__...) [ , __VA_ARGS__ ] argument
24 # define C(__VA_ARGS__...) [ , ## __VA_ARGS__ ] argument
25 # define D(A,__VA_ARGS__...) [ A , ## __VA_ARGS__ ] argument
26 # define E(A,__VA_ARGS__...) [ __VA_ARGS__ ## A ] argument
/external/libnfc-nci/halimpl/pn54x/log/
DphNxpLog.h104 …_log_level >= NXPLOG_LOG_DEBUG_LOGLEVEL) LOG_PRI(ANDROID_LOG_DEBUG,NXPLOG_ITEM_EXTNS,__VA_ARGS__);}
105 …ns_log_level >= NXPLOG_LOG_WARN_LOGLEVEL) LOG_PRI(ANDROID_LOG_WARN,NXPLOG_ITEM_EXTNS,__VA_ARGS__);}
106 …_log_level >= NXPLOG_LOG_ERROR_LOGLEVEL) LOG_PRI(ANDROID_LOG_ERROR,NXPLOG_ITEM_EXTNS,__VA_ARGS__);}
115 …log_level >= NXPLOG_LOG_DEBUG_LOGLEVEL) LOG_PRI(ANDROID_LOG_DEBUG,NXPLOG_ITEM_NCIHAL,__VA_ARGS__);}
116 …l_log_level >= NXPLOG_LOG_WARN_LOGLEVEL) LOG_PRI(ANDROID_LOG_WARN,NXPLOG_ITEM_NCIHAL,__VA_ARGS__);}
117 …log_level >= NXPLOG_LOG_ERROR_LOGLEVEL) LOG_PRI(ANDROID_LOG_ERROR,NXPLOG_ITEM_NCIHAL,__VA_ARGS__);}
126 …x_log_level >= NXPLOG_LOG_DEBUG_LOGLEVEL) LOG_PRI(ANDROID_LOG_DEBUG,NXPLOG_ITEM_NCIX,__VA_ARGS__);}
127 …cix_log_level >= NXPLOG_LOG_WARN_LOGLEVEL) LOG_PRI(ANDROID_LOG_WARN,NXPLOG_ITEM_NCIX,__VA_ARGS__);}
128 …x_log_level >= NXPLOG_LOG_ERROR_LOGLEVEL) LOG_PRI(ANDROID_LOG_ERROR,NXPLOG_ITEM_NCIX,__VA_ARGS__);}
137 …r_log_level >= NXPLOG_LOG_DEBUG_LOGLEVEL) LOG_PRI(ANDROID_LOG_DEBUG,NXPLOG_ITEM_NCIR,__VA_ARGS__);}
[all …]
/external/compiler-rt/lib/interception/
Dinterception.h129 extern "C" ret_type func(__VA_ARGS__);
131 extern "C" __declspec(dllimport) ret_type __stdcall func(__VA_ARGS__);
140 extern "C" ret_type func(__VA_ARGS__) \
147 extern "C" ret_type func(__VA_ARGS__) \
157 typedef ret_type (*FUNC_TYPE(func))(__VA_ARGS__); \
164 extern "C" ret_type func(__VA_ARGS__);
168 DECLARE_REAL(ret_type, func, __VA_ARGS__) \
169 extern "C" ret_type WRAP(func)(__VA_ARGS__);
177 typedef ret_type (*FUNC_TYPE(func))(__VA_ARGS__); \
187 DEFINE_REAL(ret_type, func, __VA_ARGS__) \
[all …]
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/
Dfunction.pass.cpp51 test<__VA_ARGS__>(); \
52 test<__VA_ARGS__ const>(); \
53 test<__VA_ARGS__ volatile>(); \
54 test<__VA_ARGS__ const volatile>()
58 test<__VA_ARGS__ &>(); \
59 test<__VA_ARGS__ const &>(); \
60 test<__VA_ARGS__ volatile &>(); \
61 test<__VA_ARGS__ const volatile &>(); \
62 test<__VA_ARGS__ &&>(); \
63 test<__VA_ARGS__ const &&>(); \
[all …]
/external/clang/test/SemaCXX/
Dwarn-thread-safety-verbose.cpp9 #define ACQUIRED_AFTER(...) __attribute__ ((acquired_after(__VA_ARGS__)))
10 #define ACQUIRED_BEFORE(...) __attribute__ ((acquired_before(__VA_ARGS__)))
11 #define EXCLUSIVE_LOCK_FUNCTION(...) __attribute__ ((exclusive_lock_function(__VA_ARGS__)))
12 #define SHARED_LOCK_FUNCTION(...) __attribute__ ((shared_lock_function(__VA_ARGS__)))
13 #define ASSERT_EXCLUSIVE_LOCK(...) __attribute__ ((assert_exclusive_lock(__VA_ARGS__)))
14 #define ASSERT_SHARED_LOCK(...) __attribute__ ((assert_shared_lock(__VA_ARGS__)))
15 #define EXCLUSIVE_TRYLOCK_FUNCTION(...) __attribute__ ((exclusive_trylock_function(__VA_ARGS__)))
16 #define SHARED_TRYLOCK_FUNCTION(...) __attribute__ ((shared_trylock_function(__VA_ARGS__)))
17 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__)))
19 #define LOCKS_EXCLUDED(...) __attribute__ ((locks_excluded(__VA_ARGS__)))
[all …]
Dwarn-thread-safety-negative.cpp12 #define ACQUIRED_AFTER(...) __attribute__ ((acquired_after(__VA_ARGS__)))
13 #define ACQUIRED_BEFORE(...) __attribute__ ((acquired_before(__VA_ARGS__)))
14 #define EXCLUSIVE_LOCK_FUNCTION(...) __attribute__ ((exclusive_lock_function(__VA_ARGS__)))
15 #define SHARED_LOCK_FUNCTION(...) __attribute__ ((shared_lock_function(__VA_ARGS__)))
16 #define ASSERT_EXCLUSIVE_LOCK(...) __attribute__ ((assert_exclusive_lock(__VA_ARGS__)))
17 #define ASSERT_SHARED_LOCK(...) __attribute__ ((assert_shared_lock(__VA_ARGS__)))
18 #define EXCLUSIVE_TRYLOCK_FUNCTION(...) __attribute__ ((exclusive_trylock_function(__VA_ARGS__)))
19 #define SHARED_TRYLOCK_FUNCTION(...) __attribute__ ((shared_trylock_function(__VA_ARGS__)))
20 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__)))
22 #define LOCKS_EXCLUDED(...) __attribute__ ((locks_excluded(__VA_ARGS__)))
[all …]
/external/google-breakpad/src/common/mac/testing/
DGTMSenTestCase.h95 withDescription:@"%@", STComposeString(description, ##__VA_ARGS__)])]; \
103 … withDescription:@"%@", STComposeString(description, ##__VA_ARGS__)]]; \
125 withDescription:@"%@", STComposeString(description, ##__VA_ARGS__)])]; \
133 … withDescription:@"%@", STComposeString(description, ##__VA_ARGS__)]]; \
154 withDescription:@"%@", STComposeString(description, ##__VA_ARGS__)])]; \
162 … withDescription:@"%@", STComposeString(description, ##__VA_ARGS__)]]; \
182 … withDescription:@"%@", STComposeString(description, ##__VA_ARGS__)])]; \
190 … withDescription:@"%@", STComposeString(description, ##__VA_ARGS__)]]; \
208 … withDescription:@"Type mismatch -- %@", STComposeString(description, ##__VA_ARGS__)]]; \
220 withDescription:@"%@", STComposeString(description, ##__VA_ARGS__)])]; \
[all …]
/external/clang/test/Sema/
Dwarn-thread-safety-analysis.c9 #define ACQUIRED_AFTER(...) __attribute__ ((acquired_after(__VA_ARGS__)))
10 #define ACQUIRED_BEFORE(...) __attribute__ ((acquired_before(__VA_ARGS__)))
11 #define EXCLUSIVE_LOCK_FUNCTION(...) __attribute__ ((exclusive_lock_function(__VA_ARGS__)))
12 #define SHARED_LOCK_FUNCTION(...) __attribute__ ((shared_lock_function(__VA_ARGS__)))
13 #define ASSERT_EXCLUSIVE_LOCK(...) __attribute__ ((assert_exclusive_lock(__VA_ARGS__)))
14 #define ASSERT_SHARED_LOCK(...) __attribute__ ((assert_shared_lock(__VA_ARGS__)))
15 #define EXCLUSIVE_TRYLOCK_FUNCTION(...) __attribute__ ((exclusive_trylock_function(__VA_ARGS__)))
16 #define SHARED_TRYLOCK_FUNCTION(...) __attribute__ ((shared_trylock_function(__VA_ARGS__)))
17 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__)))
19 #define LOCKS_EXCLUDED(...) __attribute__ ((locks_excluded(__VA_ARGS__)))
[all …]
/external/lldb/tools/debugserver/source/
DDNBLog.h61 …...) do { if (DNBLogEnabled()) { _DNBLog(0, fmt, ## __VA_ARGS__); …
62 …t, ...) do { if (DNBLogEnabled()) { _DNBLogDebug(fmt, ## __VA_ARGS__); …
63 …t, ...) do { if (DNBLogEnabled()) { _DNBLogDebugVerbose(fmt, ## __VA_ARGS__); } } wh…
64 …t, ...) do { if (DNBLogEnabled()) { _DNBLogThreaded(fmt, ## __VA_ARGS__); } …
65 … ...) do { if (DNBLogEnabledForAny(mask)) { _DNBLogThreaded(fmt, ## __VA_ARGS__); } } while (0)
66 …t, ...) do { if (DNBLogEnabled()) { _DNBLogError(fmt, ## __VA_ARGS__); …
67 …t, ...) do { if (DNBLogEnabled()) { _DNBLogFatalError(err, fmt, ## __VA_ARGS__); } } while…
68 …t, ...) do { if (DNBLogEnabled()) { _DNBLogVerbose(fmt, ## __VA_ARGS__); }…
69 …t, ...) do { if (DNBLogEnabled()) { _DNBLogWarning(fmt, ## __VA_ARGS__); }…
70 …t, ...) do { if (DNBLogEnabled()) { _DNBLogWarningVerbose(fmt, ## __VA_ARGS__); } } whil…
/external/conscrypt/src/compat/native/
Dlog_compat.h3 __android_log_print(ANDROID_##priority, tag, __VA_ARGS__)
5 __android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__)
7 __android_log_print(ANDROID_LOG_ERROR, LOG_TAG, __VA_ARGS__)
9 #define __ALOGV(...) __android_log_print(ANDROID_LOG_VERBOSE, LOG_TAG, __VA_ARGS__)
11 #define ALOGV(...) do { if (0) { __ALOGV(__VA_ARGS__); } } while (0)
13 #define ALOGV(...) __ALOGV(__VA_ARGS__)
/external/eigen/Eigen/src/StlSupport/
DStdList.h17 …TL_LIST_INSTANTIATION(...) template class std::list<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS…
28 EIGEN_EXPLICIT_STL_LIST_INSTANTIATION(__VA_ARGS__) \
32 class list<__VA_ARGS__, _Ay> \
33 : public list<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > \
35 typedef list<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > list_base; \
37 typedef __VA_ARGS__ value_type; \
DStdDeque.h18 …_DEQUE_INSTANTIATION(...) template class std::deque<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS…
29 EIGEN_EXPLICIT_STL_DEQUE_INSTANTIATION(__VA_ARGS__) \
33 class deque<__VA_ARGS__, _Ay> \
34 : public deque<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > \
36 typedef deque<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > deque_base; \
38 typedef __VA_ARGS__ value_type; \
DStdVector.h25 class vector<__VA_ARGS__, std::allocator<__VA_ARGS__> > \
26 : public vector<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > \
28 typedef vector<__VA_ARGS__, EIGEN_ALIGNED_ALLOCATOR<__VA_ARGS__> > vector_base; \
30 typedef __VA_ARGS__ value_type; \
/external/linux-tools-perf/src/tools/perf/util/include/linux/
Dkernel.h111 eprintf(0, pr_fmt(fmt), ##__VA_ARGS__)
113 eprintf(0, pr_fmt(fmt), ##__VA_ARGS__)
115 eprintf(0, pr_fmt(fmt), ##__VA_ARGS__)
117 eprintf(1, pr_fmt(fmt), ##__VA_ARGS__)
119 eprintf(n, pr_fmt(fmt), ##__VA_ARGS__)
120 #define pr_debug2(fmt, ...) pr_debugN(2, pr_fmt(fmt), ##__VA_ARGS__)
121 #define pr_debug3(fmt, ...) pr_debugN(3, pr_fmt(fmt), ##__VA_ARGS__)
122 #define pr_debug4(fmt, ...) pr_debugN(4, pr_fmt(fmt), ##__VA_ARGS__)
/external/clang/test/Misc/
Dcaret-diags-macros.c89 #define variadic_args2(x, ...) variadic_args1(x, __VA_ARGS__)
90 #define variadic_args3(x, y, ...) variadic_args2(x, y, __VA_ARGS__)
103 #define variadic_pasting_args2(x, ...) variadic_pasting_args1(x ## __VA_ARGS__)
104 #define variadic_pasting_args2a(x, y, ...) variadic_pasting_args1(x, y ## __VA_ARGS__)
105 #define variadic_pasting_args3(x, y, ...) variadic_pasting_args2(x, y, __VA_ARGS__)
106 #define variadic_pasting_args3a(x, y, ...) variadic_pasting_args2a(x, y, __VA_ARGS__)
212 __builtin___sprintf_chk (str, 0, __darwin_obsz(str), __VA_ARGS__)
/external/clang/test/PCH/
Dthread-safety-attrs.cpp17 #define ACQUIRED_AFTER(...) __attribute__ ((acquired_after(__VA_ARGS__)))
18 #define ACQUIRED_BEFORE(...) __attribute__ ((acquired_before(__VA_ARGS__)))
19 #define EXCLUSIVE_LOCK_FUNCTION(...) __attribute__ ((exclusive_lock_function(__VA_ARGS__)))
20 #define SHARED_LOCK_FUNCTION(...) __attribute__ ((shared_lock_function(__VA_ARGS__)))
21 #define EXCLUSIVE_TRYLOCK_FUNCTION(...) __attribute__ ((exclusive_trylock_function(__VA_ARGS__)))
22 #define SHARED_TRYLOCK_FUNCTION(...) __attribute__ ((shared_trylock_function(__VA_ARGS__)))
23 #define UNLOCK_FUNCTION(...) __attribute__ ((unlock_function(__VA_ARGS__)))
25 #define LOCKS_EXCLUDED(...) __attribute__ ((locks_excluded(__VA_ARGS__)))
27 __attribute__ ((exclusive_locks_required(__VA_ARGS__)))
29 __attribute__ ((shared_locks_required(__VA_ARGS__)))
/external/selinux/libsepol/src/
Ddebug.h46 _sepol_h, __VA_ARGS__); \
52 __FUNCTION__, __VA_ARGS__)
56 __FUNCTION__, __VA_ARGS__)
60 __FUNCTION__, __VA_ARGS__)
/external/valgrind/coregrind/
Dvgdb.h48 fprintf(stderr, __VA_ARGS__),fflush(stderr) \
53 fprintf(stderr, __VA_ARGS__),fflush(stderr) \
59 fprintf(stderr, __VA_ARGS__), \
63 fprintf(stderr, __VA_ARGS__), \
/external/selinux/libsemanage/src/
Ddebug.h46 handle_arg, __VA_ARGS__); \
52 __FUNCTION__, __VA_ARGS__)
56 __FUNCTION__, __VA_ARGS__)
60 __FUNCTION__, __VA_ARGS__)
/external/libcxxabi/src/Unwind/
Dconfig.h50 #define _LIBUNWIND_LOG(msg, ...) fprintf(stderr, "libunwind: " msg, __VA_ARGS__)
82 #define _LIBUNWIND_LOG(msg, ...) fprintf(stderr, "libuwind: " msg, __VA_ARGS__)
108 #define _LIBUNWIND_DEBUG_LOG(msg, ...) _LIBUNWIND_LOG(msg, __VA_ARGS__)
117 if ( logAPIs() ) _LIBUNWIND_LOG(msg, __VA_ARGS__); \
121 if ( logUnwinding() ) _LIBUNWIND_LOG(msg, __VA_ARGS__); \
/external/compiler-rt/lib/BlocksRuntime/
DBlock.h55 #define Block_copy(...) ((__typeof(__VA_ARGS__))_Block_copy((const void *)(__VA_ARGS__)))
56 #define Block_release(...) _Block_release((const void *)(__VA_ARGS__))
/external/mesa3d/src/mesa/drivers/dri/radeon/
Dradeon_debug.h119 __VA_ARGS__); \
128 __VA_ARGS__); \
136 __VA_ARGS__); \
167 radeon_warning(__VA_ARGS__);\
/external/mesa3d/src/mesa/drivers/dri/r200/
Dradeon_debug.h119 __VA_ARGS__); \
128 __VA_ARGS__); \
136 __VA_ARGS__); \
167 radeon_warning(__VA_ARGS__);\

123456789