Lines Matching refs:calltime
837 unsigned long long calltime;
860 profile_data->calltime = trace_clock_local();
873 unsigned long long calltime;
886 /* If the calltime was zero'd ignore it */
887 if (!profile_data || !profile_data->calltime)
890 calltime = rettime - profile_data->calltime;
894 calltime -= current->ftrace_sleeptime - profile_data->sleeptime;
903 parent_data->subtime += calltime;
905 if (profile_data->subtime && profile_data->subtime < calltime)
906 calltime -= profile_data->subtime;
908 calltime = 0;
913 rec->time += calltime;
914 rec->time_squared += calltime * calltime;