Home
last modified time | relevance | path

Searched defs:x (Results 1 – 7 of 7) sorted by relevance

/commonlibrary/ets_utils/js_concurrent_module/common/helper/
Dconcurrent_helper.h31 #define LIKELY(x) __builtin_expect(!!(x), 1) argument
32 #define UNLIKELY(x) __builtin_expect(!!(x), 0) argument
34 #define LIKELY(x) (!!(x)) argument
35 #define UNLIKELY(x) (!!(x)) argument
/commonlibrary/c_utils/base/include/
Dpubdef.h51 #define MAX(x, y) (((x) > (y)) ? (x) : (y)) argument
53 #define MIN(x, y) (((x) < (y)) ? (x) : (y)) argument
57 #define EQUAL_TO_ZERO(x) (fabs(x) <= (EPS)) argument
/commonlibrary/rust/ylong_runtime/ylong_runtime/tests/
Dbuilder.rs34 let x = Arc::new(Mutex::new(0)); in sdv_set_builder_after_start() localVariable
63 let x = Arc::new(Mutex::new(0)); in sdv_set_builder_before_stop() localVariable
Dblock_on.rs119 let x = runtime in sdv_block_on_nest_spawn_and_spawn() localVariable
160 let x = runtime in sdv_block_on_nest_spawn_nest_spawn() localVariable
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/time/
Dtimer.rs251 let x = Arc::new(Mutex::new(0)); in ut_new_timer_schedule() localVariable
264 let x = x.lock().unwrap(); in ut_new_timer_schedule() localVariable
/commonlibrary/utils_lite/include/
Dohos_types.h72 #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) argument
/commonlibrary/rust/ylong_runtime/ylong_runtime/src/net/
Dasync_source.rs124 let x = match ready { localVariable