Searched refs:sys_timepoint_cmp (Results 1 – 6 of 6) sorted by relevance
/Zephyr-latest/tests/kernel/timer/timepoints/src/ |
D | main.c | 44 zassert_true(sys_timepoint_cmp(a, b) == 0); in ZTEST() 45 zassert_true(sys_timepoint_cmp(b, a) == 0); in ZTEST() 49 zassert_true(sys_timepoint_cmp(a, b) == 0); in ZTEST() 50 zassert_true(sys_timepoint_cmp(b, a) == 0); in ZTEST() 54 zassert_true(sys_timepoint_cmp(a, b) < 0); in ZTEST() 55 zassert_true(sys_timepoint_cmp(b, a) > 0); in ZTEST() 59 zassert_true(sys_timepoint_cmp(a, b) < 0); in ZTEST() 60 zassert_true(sys_timepoint_cmp(b, a) > 0); in ZTEST() 64 zassert_true(sys_timepoint_cmp(a, b) == 0); in ZTEST() 65 zassert_true(sys_timepoint_cmp(b, a) == 0); in ZTEST() [all …]
|
/Zephyr-latest/include/zephyr/ |
D | sys_clock.h | 270 static inline int sys_timepoint_cmp(k_timepoint_t a, k_timepoint_t b) in sys_timepoint_cmp() function 300 static inline int sys_timepoint_cmp(k_timepoint_t a, k_timepoint_t b) in sys_timepoint_cmp() function
|
/Zephyr-latest/subsys/net/lib/dns/ |
D | dns_cache.c | 54 } else if (sys_timepoint_cmp(closest_to_expiry, cache->entries[i].expiry) > 0) { in dns_cache_add()
|
/Zephyr-latest/subsys/net/ip/ |
D | ipv4_acd.c | 138 if (sys_timepoint_cmp(ifaddr->acd_timeout, expiry) < 0) { in acd_timer_reschedule()
|
/Zephyr-latest/subsys/net/lib/sockets/ |
D | getaddrinfo.c | 114 if (sys_timepoint_cmp(end, new_timepoint) < 0) { in recalc_timeout()
|
/Zephyr-latest/subsys/net/lib/dhcpv4/ |
D | dhcpv4_server.c | 91 if (sys_timepoint_cmp(slot->expiry, next) < 0) { in dhcpv4_server_timeout_recalc() 1054 (sys_timepoint_cmp(slot->expiry, in dhcpv4_handle_discover()
|