Home
last modified time | relevance | path

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

12345678910>>...20

/external/toybox/generated/
Dconfig.h2 #define USE_TOYBOX(...) __VA_ARGS__
4 #define USE_TOYBOX_CONTAINER(...) __VA_ARGS__
8 #define USE_TOYBOX_FALLOCATE(...) __VA_ARGS__
10 #define USE_TOYBOX_FIFREEZE(...) __VA_ARGS__
12 #define USE_TOYBOX_FLOAT(...) __VA_ARGS__
14 #define USE_TOYBOX_FORK(...) __VA_ARGS__
18 #define USE_TOYBOX_HELP_DASHDASH(...) __VA_ARGS__
20 #define USE_TOYBOX_HELP(...) __VA_ARGS__
22 #define USE_TOYBOX_I18N(...) __VA_ARGS__
24 #define USE_TOYBOX_ICONV(...) __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/googletest/googlemock/include/gmock/
Dgmock-generated-function-mockers.h338 tn ::testing::internal::Function<__VA_ARGS__>::Result
343 tn ::testing::internal::Function<__VA_ARGS__>::Argument##N
348 const ::testing::Matcher<GMOCK_ARG_(tn, N, __VA_ARGS__)>&
357 GMOCK_RESULT_(tn, __VA_ARGS__) ct Method( \
360 tn ::testing::internal::Function<__VA_ARGS__>::ArgumentTuple>::value \
366 ::testing::MockSpec<__VA_ARGS__>& \
371 mutable ::testing::FunctionMocker<__VA_ARGS__> GMOCK_MOCKER_(0, constness, \
376 GMOCK_RESULT_(tn, __VA_ARGS__) ct Method( \
377 GMOCK_ARG_(tn, 1, __VA_ARGS__) gmock_a1) constness { \
379 tn ::testing::internal::Function<__VA_ARGS__>::ArgumentTuple>::value \
[all …]
/external/v8/testing/gmock/include/gmock/
Dgmock-generated-function-mockers.h338 tn ::testing::internal::Function<__VA_ARGS__>::Result
343 tn ::testing::internal::Function<__VA_ARGS__>::Argument##N
348 const ::testing::Matcher<GMOCK_ARG_(tn, N, __VA_ARGS__)>&
357 GMOCK_RESULT_(tn, __VA_ARGS__) ct Method( \
360 tn ::testing::internal::Function<__VA_ARGS__>::ArgumentTuple>::value \
366 ::testing::MockSpec<__VA_ARGS__>& \
371 mutable ::testing::FunctionMocker<__VA_ARGS__> GMOCK_MOCKER_(0, constness, \
376 GMOCK_RESULT_(tn, __VA_ARGS__) ct Method( \
377 GMOCK_ARG_(tn, 1, __VA_ARGS__) gmock_a1) constness { \
379 tn ::testing::internal::Function<__VA_ARGS__>::ArgumentTuple>::value \
[all …]
/external/mesa3d/src/gallium/state_trackers/nine/
Dnine_csmt_helper.h24 #define __NARG__(...) __NARG_I_(__VA_ARGS__,__RSEQ_N())
25 #define __NARG_I_(...) __ARG_N(__VA_ARGS__)
46 #define _args_for_bypass_14(a, b, c, d, e, f, g, ...) ,g _args_for_bypass_7(__VA_ARGS__)
47 #define _args_for_bypass_21(a, b, c, d, e, f, g, ...) ,g _args_for_bypass_14(__VA_ARGS__)
48 #define _args_for_bypass_28(a, b, c, d, e, f, g, ...) ,g _args_for_bypass_21(__VA_ARGS__)
49 #define _args_for_bypass_35(a, b, c, d, e, f, g, ...) ,g _args_for_bypass_28(__VA_ARGS__)
50 #define _args_for_bypass_42(a, b, c, d, e, f, g, ...) ,g _args_for_bypass_35(__VA_ARGS__)
51 #define _args_for_bypass_49(a, b, c, d, e, f, g, ...) ,g _args_for_bypass_42(__VA_ARGS__)
52 #define _args_for_bypass_56(a, b, c, d, e, f, g, ...) ,g _args_for_bypass_49(__VA_ARGS__)
53 #define _args_for_bypass_63(a, b, c, d, e, f, g, ...) ,g _args_for_bypass_56(__VA_ARGS__)
[all …]
/external/webp/src/dsp/
Dmsa_macro.h47 #define LD_UB(...) LD_B(v16u8, __VA_ARGS__)
48 #define LD_SB(...) LD_B(v16i8, __VA_ARGS__)
51 #define LD_UH(...) LD_H(v8u16, __VA_ARGS__)
52 #define LD_SH(...) LD_H(v8i16, __VA_ARGS__)
55 #define LD_UW(...) LD_W(v4u32, __VA_ARGS__)
56 #define LD_SW(...) LD_W(v4i32, __VA_ARGS__)
59 #define ST_UB(...) ST_B(v16u8, __VA_ARGS__)
60 #define ST_SB(...) ST_B(v16i8, __VA_ARGS__)
63 #define ST_UH(...) ST_H(v8u16, __VA_ARGS__)
64 #define ST_SH(...) ST_H(v8i16, __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/syslinux/gpxe/src/include/
Dcompiler.h329 dbg_printf ( __VA_ARGS__ ); \
396 DBG_IF ( level, __VA_ARGS__ ); \
402 DBG_HDA_IF ( level, __VA_ARGS__ ); \
408 DBG_HD_IF ( level, __VA_ARGS__ ); \
414 #define DBG( ... ) DBG_IF ( LOG, __VA_ARGS__ )
415 #define DBG_HDA( ... ) DBG_HDA_IF ( LOG, __VA_ARGS__ )
416 #define DBG_HD( ... ) DBG_HD_IF ( LOG, __VA_ARGS__ )
417 #define DBGC( ... ) DBGC_IF ( LOG, __VA_ARGS__ )
418 #define DBGC_HDA( ... ) DBGC_HDA_IF ( LOG, __VA_ARGS__ )
419 #define DBGC_HD( ... ) DBGC_HD_IF ( LOG, __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/support/
Dtest_macros.h94 #define TEST_ALIGNOF(...) alignof(__VA_ARGS__)
95 #define TEST_ALIGNAS(...) alignas(__VA_ARGS__)
98 #define TEST_NOEXCEPT_COND(...) noexcept(__VA_ARGS__)
107 # define TEST_THROW_SPEC(...) throw(__VA_ARGS__)
110 #define TEST_ALIGNOF(...) __alignof(__VA_ARGS__)
111 #define TEST_ALIGNAS(...) __attribute__((__aligned__(__VA_ARGS__)))
116 #define TEST_THROW_SPEC(...) throw(__VA_ARGS__)
119 #define TEST_ALIGNAS_TYPE(...) TEST_ALIGNAS(TEST_ALIGNOF(__VA_ARGS__))
143 static_assert(noexcept(__VA_ARGS__), "Operation must be noexcept")
146 static_assert(!noexcept(__VA_ARGS__), "Operation must NOT be noexcept")
[all …]
Drapid-cxx-test.hpp19 # define RAPID_CXX_TEST_PP_STR(...) RAPID_CXX_TEST_PP_STR_2(__VA_ARGS__)
20 # define RAPID_CXX_TEST_PP_STR_2(...) #__VA_ARGS__
131 , "TEST_WARN(" #__VA_ARGS__ ")", "" \
133 if (not (__VA_ARGS__)) { \
145 , "TEST_CHECK(" #__VA_ARGS__ ")", "" \
147 if (not (__VA_ARGS__)) { \
159 , "TEST_REQUIRE(" #__VA_ARGS__ ")", "" \
161 if (not (__VA_ARGS__)) { \
176 , "TEST_ASSERT(" #__VA_ARGS__ ")", "" \
178 if (not (__VA_ARGS__)) { \
[all …]
/external/syslinux/gpxe/src/drivers/net/
Detherfabric.h345 cpu_to_le64 ( EFAB_INSERT_FIELDS_NATIVE ( __VA_ARGS__ ) )
348 cpu_to_le32 ( EFAB_INSERT_FIELDS_NATIVE ( __VA_ARGS__ ) )
351 (oword).u64[0] = EFAB_INSERT_FIELDS64 ( 0, 63, __VA_ARGS__ );\
352 (oword).u64[1] = EFAB_INSERT_FIELDS64 ( 64, 127, __VA_ARGS__ );\
356 (qword).u64[0] = EFAB_INSERT_FIELDS64 ( 0, 63, __VA_ARGS__ );\
360 (oword).u32[0] = EFAB_INSERT_FIELDS32 ( 0, 31, __VA_ARGS__ );\
361 (oword).u32[1] = EFAB_INSERT_FIELDS32 ( 32, 63, __VA_ARGS__ );\
362 (oword).u32[2] = EFAB_INSERT_FIELDS32 ( 64, 95, __VA_ARGS__ );\
363 (oword).u32[3] = EFAB_INSERT_FIELDS32 ( 96, 127, __VA_ARGS__ );\
367 (qword).u32[0] = EFAB_INSERT_FIELDS32 ( 0, 31, __VA_ARGS__ );\
[all …]
/external/libvpx/libvpx/vp8/common/mips/msa/
Dvp8_macros_msa.h20 #define LD_UB(...) LD_B(v16u8, __VA_ARGS__)
21 #define LD_SB(...) LD_B(v16i8, __VA_ARGS__)
24 #define LD_UH(...) LD_H(v8u16, __VA_ARGS__)
25 #define LD_SH(...) LD_H(v8i16, __VA_ARGS__)
28 #define LD_UW(...) LD_W(v4u32, __VA_ARGS__)
29 #define LD_SW(...) LD_W(v4i32, __VA_ARGS__)
32 #define ST_UB(...) ST_B(v16u8, __VA_ARGS__)
33 #define ST_SB(...) ST_B(v16i8, __VA_ARGS__)
36 #define ST_UH(...) ST_H(v8u16, __VA_ARGS__)
37 #define ST_SH(...) ST_H(v8i16, __VA_ARGS__)
[all …]
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/
Dfunction.pass.cpp52 test<__VA_ARGS__>(); \
53 test<__VA_ARGS__ const>(); \
54 test<__VA_ARGS__ volatile>(); \
55 test<__VA_ARGS__ const volatile>()
59 test<__VA_ARGS__ &>(); \
60 test<__VA_ARGS__ const &>(); \
61 test<__VA_ARGS__ volatile &>(); \
62 test<__VA_ARGS__ const volatile &>(); \
63 test<__VA_ARGS__ &&>(); \
64 test<__VA_ARGS__ const &&>(); \
[all …]
/external/syslinux/gpxe/src/drivers/net/phantom/
Dnx_bitops.h90 NX_ASSEMBLE_1 ( _ptr, _index, __VA_ARGS__ ) )
94 NX_ASSEMBLE_2 ( _ptr, _index, __VA_ARGS__ ) )
98 NX_ASSEMBLE_3 ( _ptr, _index, __VA_ARGS__ ) )
102 NX_ASSEMBLE_4 ( _ptr, _index, __VA_ARGS__ ) )
106 NX_ASSEMBLE_5 ( _ptr, _index, __VA_ARGS__ ) )
110 NX_ASSEMBLE_6 ( _ptr, _index, __VA_ARGS__ ) )
123 NX_MASK_1 ( _ptr, _index, __VA_ARGS__ ) )
127 NX_MASK_2 ( _ptr, _index, __VA_ARGS__ ) )
131 NX_MASK_3 ( _ptr, _index, __VA_ARGS__ ) )
135 NX_MASK_4 ( _ptr, _index, __VA_ARGS__ ) )
[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/libvpx/libvpx/vpx_dsp/mips/
Dmacros_msa.h20 #define LD_UB(...) LD_B(v16u8, __VA_ARGS__)
21 #define LD_SB(...) LD_B(v16i8, __VA_ARGS__)
24 #define LD_UH(...) LD_H(v8u16, __VA_ARGS__)
25 #define LD_SH(...) LD_H(v8i16, __VA_ARGS__)
28 #define LD_SW(...) LD_W(v4i32, __VA_ARGS__)
31 #define ST_UB(...) ST_B(v16u8, __VA_ARGS__)
32 #define ST_SB(...) ST_B(v16i8, __VA_ARGS__)
35 #define ST_SH(...) ST_H(v8i16, __VA_ARGS__)
38 #define ST_SW(...) ST_W(v4i32, __VA_ARGS__)
298 #define LD_UB2(...) LD_B2(v16u8, __VA_ARGS__)
[all …]
/external/syslinux/gpxe/src/drivers/infiniband/
Dmlx_bitops.h91 MLX_ASSEMBLE_1 ( _structure_st, _index, __VA_ARGS__ ) )
95 MLX_ASSEMBLE_2 ( _structure_st, _index, __VA_ARGS__ ) )
99 MLX_ASSEMBLE_3 ( _structure_st, _index, __VA_ARGS__ ) )
103 MLX_ASSEMBLE_4 ( _structure_st, _index, __VA_ARGS__ ) )
107 MLX_ASSEMBLE_5 ( _structure_st, _index, __VA_ARGS__ ) )
111 MLX_ASSEMBLE_6 ( _structure_st, _index, __VA_ARGS__ ) )
124 MLX_MASK_1 ( _structure_st, _index, __VA_ARGS__ ) )
128 MLX_MASK_2 ( _structure_st, _index, __VA_ARGS__ ) )
132 MLX_MASK_3 ( _structure_st, _index, __VA_ARGS__ ) )
136 MLX_MASK_4 ( _structure_st, _index, __VA_ARGS__ ) )
[all …]
/external/libese/libese/include/ese/
Dlog.h45 #define __ALOGV(...) ((void)ALOG(LOG_VERBOSE, LOG_TAG, __VA_ARGS__))
47 #define ALOGV(...) do { if (0) { __ALOGV(__VA_ARGS__); } } while (0)
49 #define ALOGV(...) __ALOGV(__VA_ARGS__)
54 #define ALOGD(...) ((void)ALOG(LOG_DEBUG, LOG_TAG, __VA_ARGS__))
58 #define ALOGI(...) ((void)ALOG(LOG_INFO, LOG_TAG, __VA_ARGS__))
62 #define ALOGW(...) ((void)ALOG(LOG_WARN, LOG_TAG, __VA_ARGS__))
66 #define ALOGE(...) ((void)ALOG(LOG_ERROR, LOG_TAG, __VA_ARGS__))
73 fprintf(stderr, "[%s: %s] " format "\n", #priority, tag, ##__VA_ARGS__)
75 ALOG(LOG_ERROR, LOG_TAG, format, ##__VA_ARGS__); \
/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/syslinux/gpxe/src/include/gpxe/
Dbitops.h107 BIT_ASSEMBLE_1 ( _ptr, _index, __VA_ARGS__ ) )
111 BIT_ASSEMBLE_2 ( _ptr, _index, __VA_ARGS__ ) )
115 BIT_ASSEMBLE_3 ( _ptr, _index, __VA_ARGS__ ) )
119 BIT_ASSEMBLE_4 ( _ptr, _index, __VA_ARGS__ ) )
123 BIT_ASSEMBLE_5 ( _ptr, _index, __VA_ARGS__ ) )
127 BIT_ASSEMBLE_6 ( _ptr, _index, __VA_ARGS__ ) )
140 BIT_MASK_1 ( _ptr, _index, __VA_ARGS__ ) )
144 BIT_MASK_2 ( _ptr, _index, __VA_ARGS__ ) )
148 BIT_MASK_3 ( _ptr, _index, __VA_ARGS__ ) )
152 BIT_MASK_4 ( _ptr, _index, __VA_ARGS__ ) )
[all …]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/common/
Dswr_assert.h118 …d = SwrAssert(chkDebugger, swrAssertEnabled, #e, __FILE__, __LINE__, __FUNCTION__, ##__VA_ARGS__);\
124 SwrTrace(__FILE__, __LINE__, __FUNCTION__, _fmtstr, ##__VA_ARGS__);
127 #define SWR_ASSERT(e, ...) _SWR_ASSERT(true, e, ##__VA_ARGS__)
128 #define SWR_ASSUME_ASSERT(e, ...) SWR_ASSERT(e, ##__VA_ARGS__)
129 #define SWR_TRACE(_fmtstr, ...) _SWR_TRACE(_fmtstr, ##__VA_ARGS__)
139 #define SWR_REL_ASSERT(e, ...) _SWR_ASSERT(false, e, ##__VA_ARGS__)
140 #define SWR_REL_ASSUME_ASSERT(e, ...) SWR_REL_ASSERT(e, ##__VA_ARGS__)
141 #define SWR_REL_TRACE(_fmtstr, ...) _SWR_TRACE(_fmtstr, ##__VA_ARGS__)
150 #define SWR_ASSUME_ASSERT(e, ...) SWR_ASSUME(e, ##__VA_ARGS__)
156 #define SWR_REL_ASSUME_ASSERT(e, ...) SWR_ASSUME(e, ##__VA_ARGS__)
/external/libcxx/utils/google-benchmark/src/
Dmutex.h26 THREAD_ANNOTATION_ATTRIBUTE__(acquired_before(__VA_ARGS__))
29 THREAD_ANNOTATION_ATTRIBUTE__(acquired_after(__VA_ARGS__))
32 THREAD_ANNOTATION_ATTRIBUTE__(requires_capability(__VA_ARGS__))
35 THREAD_ANNOTATION_ATTRIBUTE__(requires_shared_capability(__VA_ARGS__))
38 THREAD_ANNOTATION_ATTRIBUTE__(acquire_capability(__VA_ARGS__))
41 THREAD_ANNOTATION_ATTRIBUTE__(acquire_shared_capability(__VA_ARGS__))
44 THREAD_ANNOTATION_ATTRIBUTE__(release_capability(__VA_ARGS__))
47 THREAD_ANNOTATION_ATTRIBUTE__(release_shared_capability(__VA_ARGS__))
50 THREAD_ANNOTATION_ATTRIBUTE__(try_acquire_capability(__VA_ARGS__))
53 THREAD_ANNOTATION_ATTRIBUTE__(try_acquire_shared_capability(__VA_ARGS__))
[all …]
/external/google-benchmark/src/
Dmutex.h26 THREAD_ANNOTATION_ATTRIBUTE__(acquired_before(__VA_ARGS__))
29 THREAD_ANNOTATION_ATTRIBUTE__(acquired_after(__VA_ARGS__))
32 THREAD_ANNOTATION_ATTRIBUTE__(requires_capability(__VA_ARGS__))
35 THREAD_ANNOTATION_ATTRIBUTE__(requires_shared_capability(__VA_ARGS__))
38 THREAD_ANNOTATION_ATTRIBUTE__(acquire_capability(__VA_ARGS__))
41 THREAD_ANNOTATION_ATTRIBUTE__(acquire_shared_capability(__VA_ARGS__))
44 THREAD_ANNOTATION_ATTRIBUTE__(release_capability(__VA_ARGS__))
47 THREAD_ANNOTATION_ATTRIBUTE__(release_shared_capability(__VA_ARGS__))
50 THREAD_ANNOTATION_ATTRIBUTE__(try_acquire_capability(__VA_ARGS__))
53 THREAD_ANNOTATION_ATTRIBUTE__(try_acquire_shared_capability(__VA_ARGS__))
[all …]

12345678910>>...20