Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dprofiler.c547 fp->uf_tml_idx = -1; in func_do_profile()
666 fp->uf_tml_idx = lnum - 1; in func_line_start()
668 while (fp->uf_tml_idx > 0 && FUNCLINE(fp, fp->uf_tml_idx) == NULL) in func_line_start()
669 --fp->uf_tml_idx; in func_line_start()
686 if (fp->uf_profiling && fp->uf_tml_idx >= 0) in func_line_exec()
699 if (fp->uf_profiling && fp->uf_tml_idx >= 0) in func_line_end()
703 ++fp->uf_tml_count[fp->uf_tml_idx]; in func_line_end()
706 profile_add(&fp->uf_tml_total[fp->uf_tml_idx], &fp->uf_tml_start); in func_line_end()
707 profile_self(&fp->uf_tml_self[fp->uf_tml_idx], &fp->uf_tml_start, in func_line_end()
710 fp->uf_tml_idx = -1; in func_line_end()
H A Dstructs.h1669 int uf_tml_idx; // index of line being timed; -1 if none member