Home
last modified time | relevance | path

Searched refs:usec (Results 1 – 4 of 4) sorted by relevance

/vim-8.2.3635/src/
H A Dtime.c957 long usec; in time_diff() local
960 usec = now->tv_usec - then->tv_usec; in time_diff()
961 msec = (now->tv_sec - then->tv_sec) * 1000L + usec / 1000L, in time_diff()
962 usec = usec % 1000L; in time_diff()
963 fprintf(time_fd, "%03ld.%03ld", msec, usec >= 0 ? usec : usec + 1000L); in time_diff()
H A Dprofiler.c128 long usec; in profile_setlimit()
131 usec = (long)tm->tv_usec + (long)msec * 1000; in profile_setlimit()
132 tm->tv_usec = usec % 1000000L; in profile_setlimit()
133 tm->tv_sec += usec / 1000000L; in profile_setlimit()
194 double usec = (tm->tv_sec * 1000000.0 + tm->tv_usec) / count; in profile_divide()
196 tm2->tv_sec = floor(usec / 1000000.0); in profile_divide()
197 tm2->tv_usec = vim_round(usec - (tm2->tv_sec * 1000000.0)); in profile_divide()
/vim-8.2.3635/runtime/autoload/
H A Dphpcomplete.vim2823 …signature':'array &$read, array &$error, array &$reject, int $sec [, int $usec] | int','return_typ…
/vim-8.2.3635/runtime/doc/
H A Dversion7.txt2071 ":sleep 100u" sleeps for 100 seconds, not 100 usec as one might expect. Give