Searched refs:t1 (Results 1 – 7 of 7) 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 | 124 unsigned long flags, t1; in delayacct_add_tsk() local 142 t1 = tsk->sched_info.pcount; in delayacct_add_tsk() 146 d->cpu_count += t1; in delayacct_add_tsk()
|
/kernel/bpf/ |
D | btf.c | 5323 struct btf *btf1, const struct btf_type *t1, in btf_check_func_type_match() argument 5330 fn1 = btf_name_by_offset(btf1, t1->name_off); in btf_check_func_type_match() 5333 if (btf_func_linkage(t1) != BTF_FUNC_GLOBAL) { in btf_check_func_type_match() 5342 t1 = btf_type_by_id(btf1, t1->type); in btf_check_func_type_match() 5343 if (!t1 || !btf_type_is_func_proto(t1)) in btf_check_func_type_match() 5349 args1 = (const struct btf_param *)(t1 + 1); in btf_check_func_type_match() 5350 nargs1 = btf_type_vlen(t1); in btf_check_func_type_match() 5360 t1 = btf_type_skip_modifiers(btf1, t1->type, NULL); in btf_check_func_type_match() 5362 if (t1->info != t2->info) { in btf_check_func_type_match() 5365 btf_type_str(t1), fn1, in btf_check_func_type_match() [all …]
|
/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/sched/ |
D | debug.c | 1047 u64 t0, t1; in proc_sched_show_task() local 1050 t1 = cpu_clock(this_cpu); in proc_sched_show_task() 1051 __PS("clock-delta", t1-t0); in proc_sched_show_task()
|
/kernel/rcu/ |
D | tasks.h | 510 struct task_struct *t, *t1; in check_all_holdout_tasks() local 512 list_for_each_entry_safe(t, t1, hop, rcu_tasks_holdout_list) { in check_all_holdout_tasks()
|
/kernel/locking/ |
D | lockdep.c | 521 static bool traces_identical(struct lock_trace *t1, struct lock_trace *t2) in traces_identical() argument 523 return t1->hash == t2->hash && t1->nr_entries == t2->nr_entries && in traces_identical() 524 memcmp(t1->entries, t2->entries, in traces_identical() 525 t1->nr_entries * sizeof(t1->entries[0])) == 0; in traces_identical()
|