Searched refs:uu (Results 1 - 14 of 14) sorted by relevance

/linux-master/arch/microblaze/lib/
H A Dlshrdi3.c8 DWunion uu, w; local
14 uu.ll = u;
19 w.s.low = (unsigned int) uu.s.high >> -bm;
21 const unsigned int carries = (unsigned int) uu.s.high << bm;
23 w.s.high = (unsigned int) uu.s.high >> b;
24 w.s.low = ((unsigned int) uu.s.low >> b) | carries;
H A Dashldi3.c8 DWunion uu, w; local
14 uu.ll = u;
19 w.s.high = (unsigned int) uu.s.low << -bm;
21 const unsigned int carries = (unsigned int) uu.s.low >> bm;
23 w.s.low = (unsigned int) uu.s.low << b;
24 w.s.high = ((unsigned int) uu.s.high << b) | carries;
H A Dashrdi3.c8 DWunion uu, w; local
14 uu.ll = u;
20 uu.s.high >> 31;
21 w.s.low = uu.s.high >> -bm;
23 const unsigned int carries = (unsigned int) uu.s.high << bm;
25 w.s.high = uu.s.high >> b;
26 w.s.low = ((unsigned int) uu.s.low >> b) | carries;
H A Dmuldi3.c49 const DWunion uu = {.ll = u}; local
51 DWunion w = {.ll = __umulsidi3(uu.s.low, vv.s.low)};
53 w.s.high += ((unsigned long) uu.s.low * (unsigned long) vv.s.high
54 + (unsigned long) uu.s.high * (unsigned long) vv.s.low);
/linux-master/lib/
H A Dashrdi3.c11 DWunion uu, w; local
17 uu.ll = u;
23 uu.s.high >> 31;
24 w.s.low = uu.s.high >> -bm;
26 const unsigned int carries = (unsigned int) uu.s.high << bm;
28 w.s.high = uu.s.high >> b;
29 w.s.low = ((unsigned int) uu.s.low >> b) | carries;
H A Dashldi3.c11 DWunion uu, w; local
17 uu.ll = u;
22 w.s.high = (unsigned int) uu.s.low << -bm;
24 const unsigned int carries = (unsigned int) uu.s.low >> bm;
26 w.s.low = (unsigned int) uu.s.low << b;
27 w.s.high = ((unsigned int) uu.s.high << b) | carries;
H A Dlshrdi3.c11 DWunion uu, w; local
17 uu.ll = u;
22 w.s.low = (unsigned int) uu.s.high >> -bm;
24 const unsigned int carries = (unsigned int) uu.s.high << bm;
26 w.s.high = (unsigned int) uu.s.high >> b;
27 w.s.low = ((unsigned int) uu.s.low >> b) | carries;
H A Dmuldi3.c51 const DWunion uu = {.ll = u}; local
53 DWunion w = {.ll = __umulsidi3(uu.s.low, vv.s.low)};
55 w.s.high += ((unsigned long) uu.s.low * (unsigned long) vv.s.high
56 + (unsigned long) uu.s.high * (unsigned long) vv.s.low);
/linux-master/arch/m68k/lib/
H A Dmuldi3.c86 DIunion uu, vv; local
88 uu.ll = u;
91 w.ll = __umulsidi3 (uu.s.low, vv.s.low);
92 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high
93 + (USItype) uu.s.high * (USItype) vv.s.low);
/linux-master/drivers/staging/vt6655/
H A Dcard.c387 unsigned int uu; local
397 for (uu = 0; uu < TYPE_MAXTD; uu++)
398 priv->iTDUsed[uu] = 0;
400 for (uu = 0; uu < priv->opts.tx_descs[0]; uu++) {
401 curr_td = &priv->apTD0Rings[uu];
405 for (uu
434 unsigned int uu; local
[all...]
H A Dmac.c680 unsigned int uu, ii; local
686 for (uu = 0; uu < uDelay; uu++) {
/linux-master/lib/zlib_inflate/
H A Dinffast.c13 union uu { union
22 union uu mm;
269 union uu mm;
/linux-master/kernel/sched/
H A Dcpufreq_schedutil.c828 void (*uu)(struct update_util_data *data, u64 time, unsigned int flags);
841 uu = sugov_update_shared;
843 uu = sugov_update_single_perf;
845 uu = sugov_update_single_freq;
853 cpufreq_add_update_util_hook(cpu, &sg_cpu->update_util, uu);
/linux-master/drivers/atm/
H A Dlanai.c1186 int len, int cpi, int uu)
1191 lvcc->tx.buf.ptr[-2] = cpu_to_be32((uu << 24) | (cpi << 16) | len);
1185 vcc_tx_add_aal5_trailer(struct lanai_vcc *lvcc, int len, int cpi, int uu) argument

Completed in 192 milliseconds