Searched defs:x (Results 1 – 7 of 7) sorted by relevance
31 #define LIKELY(x) __builtin_expect(!!(x), 1) argument32 #define UNLIKELY(x) __builtin_expect(!!(x), 0) argument34 #define LIKELY(x) (!!(x)) argument35 #define UNLIKELY(x) (!!(x)) argument
51 #define MAX(x, y) (((x) > (y)) ? (x) : (y)) argument53 #define MIN(x, y) (((x) < (y)) ? (x) : (y)) argument57 #define EQUAL_TO_ZERO(x) (fabs(x) <= (EPS)) argument
34 let x = Arc::new(Mutex::new(0)); in sdv_set_builder_after_start() localVariable63 let x = Arc::new(Mutex::new(0)); in sdv_set_builder_before_stop() localVariable
119 let x = runtime in sdv_block_on_nest_spawn_and_spawn() localVariable160 let x = runtime in sdv_block_on_nest_spawn_nest_spawn() localVariable
251 let x = Arc::new(Mutex::new(0)); in ut_new_timer_schedule() localVariable264 let x = x.lock().unwrap(); in ut_new_timer_schedule() localVariable
72 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) argument
124 let x = match ready { localVariable