Home
last modified time | relevance | path

Searched refs:_rtw_time_after (Results 1 – 2 of 2) sorted by relevance

/device/board/unionman/unionpi_tiger/kernel/drivers/rtl88x2cs/include/
Dosdep_service.h372 extern bool _rtw_time_after(systime a, systime b);
382 #define rtw_time_after(a,b) ({bool __r = _rtw_time_after(a,b); typecheck(systime, a); typecheck(sys…
383 #define rtw_time_before(a,b) ({bool __r = _rtw_time_after(b, a); typecheck(systime, a); typecheck(s…
392 #define rtw_time_after(a,b) _rtw_time_after(a,b)
393 #define rtw_time_before(a,b) _rtw_time_after(b,a)
/device/board/unionman/unionpi_tiger/kernel/drivers/rtl88x2cs/os_dep/
Dosdep_service.c1826 inline bool _rtw_time_after(systime a, systime b) in _rtw_time_after() function