Home
last modified time | relevance | path

Searched refs:t2 (Results 1 – 5 of 5) sorted by relevance

/kernel/
Dkcmp.c52 long t1, t2; in kcmp_ptr() local
55 t2 = kptr_obfuscate((long)v2, type); in kcmp_ptr()
57 return (t1 < t2) | ((t1 > t2) << 1); in kcmp_ptr()
Ddelayacct.c88 unsigned long long t2, t3; in __delayacct_add_tsk() local
108 t2 = tsk->sched_info.run_delay; in __delayacct_add_tsk()
113 tmp = (s64)d->cpu_delay_total + t2; in __delayacct_add_tsk()
/kernel/trace/
Dtrace_probe.c460 const struct fetch_type *t2 = find_fetch_type(NULL); in parse_probe_arg() local
463 ret = parse_probe_arg(arg, t2, &code, end, flags, offs); in parse_probe_arg()
547 char *t, *t2, *t3; in traceprobe_parse_probe_arg_body() local
566 t2 = strchr(++t, '['); in traceprobe_parse_probe_arg_body()
567 if (t2) { in traceprobe_parse_probe_arg_body()
568 *t2++ = '\0'; in traceprobe_parse_probe_arg_body()
569 t3 = strchr(t2, ']'); in traceprobe_parse_probe_arg_body()
571 offset += t2 + strlen(t2) - arg; in traceprobe_parse_probe_arg_body()
581 if (kstrtouint(t2, 0, &parg->count) || !parg->count) { in traceprobe_parse_probe_arg_body()
582 trace_probe_log_err(offset + t2 - arg, in traceprobe_parse_probe_arg_body()
[all …]
Dtrace_hwlat.c170 time_type start, t1, t2, last_t2; in get_sample() local
193 t2 = time_get(); in get_sample()
206 last_t2 = t2; in get_sample()
208 total = time_to_us(time_sub(t2, start)); /* sample width */ in get_sample()
218 diff = time_to_us(time_sub(t2, t1)); /* current diff */ in get_sample()
/kernel/locking/
Dlockdep.c473 static bool traces_identical(struct lock_trace *t1, struct lock_trace *t2) in traces_identical() argument
475 return t1->hash == t2->hash && t1->nr_entries == t2->nr_entries && in traces_identical()
476 memcmp(t1->entries, t2->entries, in traces_identical()
482 struct lock_trace *trace, *t2; in save_trace() local
509 hlist_for_each_entry(t2, hash_head, hash_entry) { in save_trace()
510 if (traces_identical(trace, t2)) in save_trace()
511 return t2; in save_trace()