Searched refs:t1 (Results 1 – 8 of 8) sorted by relevance
/kernel/ |
D | kcmp.c | 52 long t1, t2; in kcmp_ptr() local 54 t1 = kptr_obfuscate((long)v1, type); in kcmp_ptr() 57 return (t1 < t2) | ((t1 > t2) << 1); in kcmp_ptr()
|
D | delayacct.c | 135 unsigned long flags, t1; in delayacct_add_tsk() local 153 t1 = tsk->sched_info.pcount; in delayacct_add_tsk() 157 d->cpu_count += t1; in delayacct_add_tsk()
|
/kernel/trace/ |
D | trace_hwlat.c | 206 time_type start, t1, t2, last_t2; in get_sample() local 229 t1 = time_get(); /* we'll look for a discontinuity */ in get_sample() 234 outer_diff = time_to_us(time_sub(t1, last_t2)); in get_sample() 255 diff = time_to_us(time_sub(t2, t1)); /* current diff */ in get_sample()
|
/kernel/bpf/ |
D | btf.c | 6016 struct btf *btf1, const struct btf_type *t1, in btf_check_func_type_match() argument 6023 fn1 = btf_name_by_offset(btf1, t1->name_off); in btf_check_func_type_match() 6026 if (btf_func_linkage(t1) != BTF_FUNC_GLOBAL) { in btf_check_func_type_match() 6035 t1 = btf_type_by_id(btf1, t1->type); in btf_check_func_type_match() 6036 if (!t1 || !btf_type_is_func_proto(t1)) in btf_check_func_type_match() 6042 args1 = (const struct btf_param *)(t1 + 1); in btf_check_func_type_match() 6043 nargs1 = btf_type_vlen(t1); in btf_check_func_type_match() 6053 t1 = btf_type_skip_modifiers(btf1, t1->type, NULL); in btf_check_func_type_match() 6055 if (t1->info != t2->info) { in btf_check_func_type_match() 6058 btf_type_str(t1), fn1, in btf_check_func_type_match() [all …]
|
/kernel/sched/ |
D | debug.c | 1057 u64 t0, t1; in proc_sched_show_task() local 1060 t1 = cpu_clock(this_cpu); in proc_sched_show_task() 1061 __PS("clock-delta", t1-t0); in proc_sched_show_task()
|
D | fair.c | 11681 u64 t0, t1, curr_cost = 0; in newidle_balance() local 11754 t1 = sched_clock_cpu(this_cpu); in newidle_balance() 11755 domain_cost = t1 - t0; in newidle_balance() 11759 t0 = t1; in newidle_balance()
|
/kernel/locking/ |
D | lockdep.c | 552 static bool traces_identical(struct lock_trace *t1, struct lock_trace *t2) in traces_identical() argument 554 return t1->hash == t2->hash && t1->nr_entries == t2->nr_entries && in traces_identical() 555 memcmp(t1->entries, t2->entries, in traces_identical() 556 t1->nr_entries * sizeof(t1->entries[0])) == 0; in traces_identical()
|
/kernel/rcu/ |
D | tasks.h | 895 struct task_struct *t, *t1; in check_all_holdout_tasks() local 897 list_for_each_entry_safe(t, t1, hop, rcu_tasks_holdout_list) { in check_all_holdout_tasks()
|