Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dprofiler.c274 profile_equal(proftime_T *tm1, proftime_T *tm2) in profile_equal() argument
277 return (tm1->QuadPart == tm2->QuadPart); in profile_equal()
279 return (tm1->tv_usec == tm2->tv_usec && tm1->tv_sec == tm2->tv_sec); in profile_equal()
287 profile_cmp(const proftime_T *tm1, const proftime_T *tm2) in profile_cmp() argument
290 return (int)(tm2->QuadPart - tm1->QuadPart); in profile_cmp()
292 if (tm1->tv_sec == tm2->tv_sec) in profile_cmp()
293 return tm2->tv_usec - tm1->tv_usec; in profile_cmp()
294 return tm2->tv_sec - tm1->tv_sec; in profile_cmp()
/vim-8.2.3635/src/proto/
H A Dprofiler.pro14 int profile_cmp(const proftime_T *tm1, const proftime_T *tm2);