Searched refs:u (Results 1 – 5 of 5) sorted by relevance
/kernel/ |
D | res_counter.c | 43 struct res_counter *c, *u; in res_counter_charge() local 59 for (u = counter; u != c; u = u->parent) { in res_counter_charge() 60 spin_lock(&u->lock); in res_counter_charge() 61 res_counter_uncharge_locked(u, val); in res_counter_charge() 62 spin_unlock(&u->lock); in res_counter_charge()
|
D | tracepoint.c | 65 } u; member 78 kfree(container_of(head, struct tp_probes, u.rcu)); in rcu_free_old_probes() 86 call_rcu_sched(&tp_probes->u.rcu, rcu_free_old_probes); in release_probes() 398 list_add(&tp_probes->u.list, &old_probes); in tracepoint_add_old_probes() 467 list_for_each_entry_safe(pos, next, &release_probes, u.list) { in tracepoint_probe_update_all() 468 list_del(&pos->u.list); in tracepoint_probe_update_all() 469 call_rcu_sched(&pos->u.rcu, rcu_free_old_probes); in tracepoint_probe_update_all()
|
D | time.c | 487 unsigned long usecs_to_jiffies(const unsigned int u) in usecs_to_jiffies() argument 489 if (u > jiffies_to_usecs(MAX_JIFFY_OFFSET)) in usecs_to_jiffies() 492 return (u + (USEC_PER_SEC / HZ) - 1) / (USEC_PER_SEC / HZ); in usecs_to_jiffies() 494 return u * (HZ / USEC_PER_SEC); in usecs_to_jiffies() 496 return (USEC_TO_HZ_MUL32 * u + USEC_TO_HZ_ADJ32) in usecs_to_jiffies()
|
D | sys.c | 1430 struct new_utsname *u = utsname(); in SYSCALL_DEFINE2() local 1432 memcpy(u->nodename, tmp, len); in SYSCALL_DEFINE2() 1433 memset(u->nodename + len, 0, sizeof(u->nodename) - len); in SYSCALL_DEFINE2() 1445 struct new_utsname *u; in SYSCALL_DEFINE2() local 1450 u = utsname(); in SYSCALL_DEFINE2() 1451 i = 1 + strlen(u->nodename); in SYSCALL_DEFINE2() 1455 if (copy_to_user(name, u->nodename, i)) in SYSCALL_DEFINE2() 1480 struct new_utsname *u = utsname(); in SYSCALL_DEFINE2() local 1482 memcpy(u->domainname, tmp, len); in SYSCALL_DEFINE2() 1483 memset(u->domainname + len, 0, sizeof(u->domainname) - len); in SYSCALL_DEFINE2()
|
D | acct.c | 457 unsigned u; in encode_float() local 464 u = (u32)(value >> 40) & 0x7fffffu; in encode_float() 465 return u | (exp << 23); in encode_float()
|