Lines Matching defs:x
13 # define __must_hold(x) __attribute__((context(x,1,1))) argument
14 # define __acquires(x) __attribute__((context(x,0,1))) argument
15 # define __releases(x) __attribute__((context(x,1,0))) argument
16 # define __acquire(x) __context__(x,1) argument
17 # define __release(x) __context__(x,-1) argument
18 # define __cond_lock(x,c) ((c) ? ({ __acquire(x); 1; }) : 0) argument
34 # define __chk_user_ptr(x) (void)0 argument
35 # define __chk_io_ptr(x) (void)0 argument
36 # define __builtin_warning(x, y...) (1) argument
37 # define __must_hold(x) argument
38 # define __acquires(x) argument
39 # define __releases(x) argument
40 # define __acquire(x) (void)0 argument
41 # define __release(x) (void)0 argument
42 # define __cond_lock(x,c) (c) argument
108 #define likely_notrace(x) __builtin_expect(!!(x), 1) argument
109 #define unlikely_notrace(x) __builtin_expect(!!(x), 0) argument
111 #define __branch_check__(x, expect) ({ \ argument
132 # define likely(x) (__builtin_constant_p(x) ? !!(x) : __branch_check__(x, 1)) argument
135 # define unlikely(x) (__builtin_constant_p(x) ? !!(x) : __branch_check__(x, 0)) argument
163 # define likely(x) __builtin_expect(!!(x), 1) argument
164 # define unlikely(x) __builtin_expect(!!(x), 0) argument
249 #define READ_ONCE(x) \ argument
252 #define WRITE_ONCE(x, val) \ argument
455 #define __ACCESS_ONCE(x) ({ \ argument
458 #define ACCESS_ONCE(x) (*__ACCESS_ONCE(x)) argument