Lines Matching defs:x
13 # define __acquires(x) __attribute__((context(x,0,1))) argument
14 # define __releases(x) __attribute__((context(x,1,0))) argument
15 # define __acquire(x) __context__(x,1) argument
16 # define __release(x) __context__(x,-1) argument
17 # define __cond_lock(x,c) ((c) ? ({ __acquire(x); 1; }) : 0) argument
33 # define __chk_user_ptr(x) (void)0 argument
34 # define __chk_io_ptr(x) (void)0 argument
35 # define __builtin_warning(x, y...) (1) argument
36 # define __acquires(x) argument
37 # define __releases(x) argument
38 # define __acquire(x) (void)0 argument
39 # define __release(x) (void)0 argument
40 # define __cond_lock(x,c) (c) argument
91 #define likely_notrace(x) __builtin_expect(!!(x), 1) argument
92 #define unlikely_notrace(x) __builtin_expect(!!(x), 0) argument
94 #define __branch_check__(x, expect) ({ \ argument
115 # define likely(x) (__builtin_constant_p(x) ? !!(x) : __branch_check__(x, 1)) argument
118 # define unlikely(x) (__builtin_constant_p(x) ? !!(x) : __branch_check__(x, 0)) argument
146 # define likely(x) __builtin_expect(!!(x), 1) argument
147 # define unlikely(x) __builtin_expect(!!(x), 0) argument
311 #define ACCESS_ONCE(x) (*(volatile typeof(x) *)&(x)) argument