Symbol: uu
arch/microblaze/lib/ashldi3.c
14
uu.ll = u;
arch/microblaze/lib/ashldi3.c
19
w.s.high = (unsigned int) uu.s.low << -bm;
arch/microblaze/lib/ashldi3.c
21
const unsigned int carries = (unsigned int) uu.s.low >> bm;
arch/microblaze/lib/ashldi3.c
23
w.s.low = (unsigned int) uu.s.low << b;
arch/microblaze/lib/ashldi3.c
24
w.s.high = ((unsigned int) uu.s.high << b) | carries;
arch/microblaze/lib/ashldi3.c
8
DWunion uu, w;
arch/microblaze/lib/ashrdi3.c
14
uu.ll = u;
arch/microblaze/lib/ashrdi3.c
20
uu.s.high >> 31;
arch/microblaze/lib/ashrdi3.c
21
w.s.low = uu.s.high >> -bm;
arch/microblaze/lib/ashrdi3.c
23
const unsigned int carries = (unsigned int) uu.s.high << bm;
arch/microblaze/lib/ashrdi3.c
25
w.s.high = uu.s.high >> b;
arch/microblaze/lib/ashrdi3.c
26
w.s.low = ((unsigned int) uu.s.low >> b) | carries;
arch/microblaze/lib/ashrdi3.c
8
DWunion uu, w;
arch/microblaze/lib/lshrdi3.c
14
uu.ll = u;
arch/microblaze/lib/lshrdi3.c
19
w.s.low = (unsigned int) uu.s.high >> -bm;
arch/microblaze/lib/lshrdi3.c
21
const unsigned int carries = (unsigned int) uu.s.high << bm;
arch/microblaze/lib/lshrdi3.c
23
w.s.high = (unsigned int) uu.s.high >> b;
arch/microblaze/lib/lshrdi3.c
24
w.s.low = ((unsigned int) uu.s.low >> b) | carries;
arch/microblaze/lib/lshrdi3.c
8
DWunion uu, w;
arch/microblaze/lib/muldi3.c
49
const DWunion uu = {.ll = u};
arch/microblaze/lib/muldi3.c
51
DWunion w = {.ll = __umulsidi3(uu.s.low, vv.s.low)};
arch/microblaze/lib/muldi3.c
53
w.s.high += ((unsigned long) uu.s.low * (unsigned long) vv.s.high
arch/microblaze/lib/muldi3.c
54
+ (unsigned long) uu.s.high * (unsigned long) vv.s.low);
drivers/atm/lanai.c
1186
int len, int cpi, int uu)
drivers/atm/lanai.c
1191
lvcc->tx.buf.ptr[-2] = cpu_to_be32((uu << 24) | (cpi << 16) | len);
fs/ext4/ioctl.c
1482
uuid_t uu;
fs/ext4/ioctl.c
1484
memcpy(&uu, sbi->s_hash_seed, UUID_SIZE);
fs/ext4/ioctl.c
1485
if (uuid_is_null(&uu))
kernel/sched/cpufreq_schedutil.c
846
void (*uu)(struct update_util_data *data, u64 time, unsigned int flags);
kernel/sched/cpufreq_schedutil.c
859
uu = sugov_update_shared;
kernel/sched/cpufreq_schedutil.c
861
uu = sugov_update_single_perf;
kernel/sched/cpufreq_schedutil.c
863
uu = sugov_update_single_freq;
kernel/sched/cpufreq_schedutil.c
871
cpufreq_add_update_util_hook(cpu, &sg_cpu->update_util, uu);
lib/ashldi3.c
11
DWunion uu, w;
lib/ashldi3.c
17
uu.ll = u;
lib/ashldi3.c
22
w.s.high = (unsigned int) uu.s.low << -bm;
lib/ashldi3.c
24
const unsigned int carries = (unsigned int) uu.s.low >> bm;
lib/ashldi3.c
26
w.s.low = (unsigned int) uu.s.low << b;
lib/ashldi3.c
27
w.s.high = ((unsigned int) uu.s.high << b) | carries;
lib/ashrdi3.c
11
DWunion uu, w;
lib/ashrdi3.c
17
uu.ll = u;
lib/ashrdi3.c
23
uu.s.high >> 31;
lib/ashrdi3.c
24
w.s.low = uu.s.high >> -bm;
lib/ashrdi3.c
26
const unsigned int carries = (unsigned int) uu.s.high << bm;
lib/ashrdi3.c
28
w.s.high = uu.s.high >> b;
lib/ashrdi3.c
29
w.s.low = ((unsigned int) uu.s.low >> b) | carries;
lib/lshrdi3.c
11
DWunion uu, w;
lib/lshrdi3.c
17
uu.ll = u;
lib/lshrdi3.c
22
w.s.low = (unsigned int) uu.s.high >> -bm;
lib/lshrdi3.c
24
const unsigned int carries = (unsigned int) uu.s.high << bm;
lib/lshrdi3.c
26
w.s.high = (unsigned int) uu.s.high >> b;
lib/lshrdi3.c
27
w.s.low = ((unsigned int) uu.s.low >> b) | carries;
lib/muldi3.c
51
const DWunion uu = {.ll = u};
lib/muldi3.c
53
DWunion w = {.ll = __umulsidi3(uu.s.low, vv.s.low)};
lib/muldi3.c
55
w.s.high += ((unsigned long) uu.s.low * (unsigned long) vv.s.high
lib/muldi3.c
56
+ (unsigned long) uu.s.high * (unsigned long) vv.s.low);
lib/zlib_inflate/inffast.c
22
union uu mm;
lib/zlib_inflate/inffast.c
269
union uu mm;