Home
last modified time | relevance | path

Searched refs:start_tv (Results 1 – 7 of 7) sorted by relevance

/vim-8.2.3635/src/
H A Dui.c281 elapsed_T start_tv; in inchar_loop() local
283 ELAPSED_INIT(start_tv); in inchar_loop()
315 elapsed_time = ELAPSED_FUNC(start_tv); in inchar_loop()
H A Dos_unix.c1895 elapsed_T start_tv; in get_x11_windis() local
1898 ELAPSED_INIT(start_tv); in get_x11_windis()
1925 xopen_message(ELAPSED_FUNC(start_tv)); in get_x11_windis()
4917 elapsed_T start_tv; in mch_call_shell_fork() local
5029 ELAPSED_INIT(start_tv); in mch_call_shell_fork()
5065 ELAPSED_INIT(start_tv); in mch_call_shell_fork()
5245 long msec = ELAPSED_FUNC(start_tv); in mch_call_shell_fork()
6173 elapsed_T start_tv; in RealWaitForChar() local
6176 ELAPSED_INIT(start_tv); in RealWaitForChar()
7604 elapsed_T start_tv; in setup_term_clip() local
[all …]
H A Dchannel.c805 struct timeval start_tv; in channel_connect() local
816 gettimeofday(&start_tv, NULL); in channel_connect()
883 elapsed_msec = (end_tv.tv_sec - start_tv.tv_sec) * 1000 in channel_connect()
884 + (end_tv.tv_usec - start_tv.tv_usec) / 1000; in channel_connect()
4595 elapsed_T start_tv; in channel_parse_messages() local
4604 ELAPSED_INIT(start_tv); in channel_parse_messages()
4662 && ELAPSED_FUNC(start_tv) < 100L in channel_parse_messages()
H A Dmisc1.c1099 static elapsed_T start_tv; in vim_beep() local
1103 if (!did_init || ELAPSED_FUNC(start_tv) > 500) in vim_beep()
1106 ELAPSED_INIT(start_tv); in vim_beep()
H A Dmisc2.c2796 elapsed(struct timeval *start_tv) in elapsed() argument
2801 return (now_tv.tv_sec - start_tv->tv_sec) * 1000L in elapsed()
2802 + (now_tv.tv_usec - start_tv->tv_usec) / 1000L; in elapsed()
H A Dvim.h2722 long elapsed(struct timeval *start_tv);
H A Dex_docmd.c7517 elapsed_T start_tv; in do_sleep() local
7521 ELAPSED_INIT(start_tv); in do_sleep()
7566 done = ELAPSED_FUNC(start_tv); in do_sleep()