Lines Matching refs:sorttab
477 ufunc_T **sorttab, in prof_sort_list() argument
489 fp = sorttab[i]; in prof_sort_list()
725 ufunc_T **sorttab; in func_dump_profile() local
734 sorttab = ALLOC_MULT(ufunc_T *, todo); in func_dump_profile()
744 if (sorttab != NULL) in func_dump_profile()
745 sorttab[st_len++] = fp; in func_dump_profile()
784 if (sorttab != NULL && st_len > 0) in func_dump_profile()
786 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *), in func_dump_profile()
788 prof_sort_list(fd, sorttab, st_len, "TOTAL", FALSE); in func_dump_profile()
789 qsort((void *)sorttab, (size_t)st_len, sizeof(ufunc_T *), in func_dump_profile()
791 prof_sort_list(fd, sorttab, st_len, "SELF", TRUE); in func_dump_profile()
794 vim_free(sorttab); in func_dump_profile()