/linux-6.3-rc2/arch/sh/lib/ |
A D | ashrdi3.c | 8 DWunion uu, w; in __ashrdi3() local 14 uu.ll = u; in __ashrdi3() 20 uu.s.high >> 31; in __ashrdi3() 21 w.s.low = uu.s.high >> -bm; in __ashrdi3() 23 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3() 25 w.s.high = uu.s.high >> b; in __ashrdi3() 26 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __ashrdi3()
|
A D | ashldi3.c | 8 DWunion uu, w; in __ashldi3() local 14 uu.ll = u; in __ashldi3() 19 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3() 21 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3() 23 w.s.low = (unsigned int) uu.s.low << b; in __ashldi3() 24 w.s.high = ((unsigned int) uu.s.high << b) | carries; in __ashldi3()
|
A D | lshrdi3.c | 8 DWunion uu, w; in __lshrdi3() local 14 uu.ll = u; in __lshrdi3() 19 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3() 21 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3() 23 w.s.high = (unsigned int) uu.s.high >> b; in __lshrdi3() 24 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __lshrdi3()
|
/linux-6.3-rc2/lib/ |
A D | ashrdi3.c | 11 DWunion uu, w; in __ashrdi3() local 17 uu.ll = u; in __ashrdi3() 23 uu.s.high >> 31; in __ashrdi3() 24 w.s.low = uu.s.high >> -bm; in __ashrdi3() 26 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3() 28 w.s.high = uu.s.high >> b; in __ashrdi3() 29 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __ashrdi3()
|
A D | lshrdi3.c | 11 DWunion uu, w; in __lshrdi3() local 17 uu.ll = u; in __lshrdi3() 22 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3() 24 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3() 26 w.s.high = (unsigned int) uu.s.high >> b; in __lshrdi3() 27 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __lshrdi3()
|
A D | ashldi3.c | 11 DWunion uu, w; in __ashldi3() local 17 uu.ll = u; in __ashldi3() 22 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3() 24 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3() 26 w.s.low = (unsigned int) uu.s.low << b; in __ashldi3() 27 w.s.high = ((unsigned int) uu.s.high << b) | carries; in __ashldi3()
|
A D | muldi3.c | 51 const DWunion uu = {.ll = u}; in __muldi3() local 53 DWunion w = {.ll = __umulsidi3(uu.s.low, vv.s.low)}; in __muldi3() 55 w.s.high += ((unsigned long) uu.s.low * (unsigned long) vv.s.high in __muldi3() 56 + (unsigned long) uu.s.high * (unsigned long) vv.s.low); in __muldi3()
|
/linux-6.3-rc2/arch/microblaze/lib/ |
A D | ashrdi3.c | 8 DWunion uu, w; in __ashrdi3() local 14 uu.ll = u; in __ashrdi3() 20 uu.s.high >> 31; in __ashrdi3() 21 w.s.low = uu.s.high >> -bm; in __ashrdi3() 23 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3() 25 w.s.high = uu.s.high >> b; in __ashrdi3() 26 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __ashrdi3()
|
A D | ashldi3.c | 8 DWunion uu, w; in __ashldi3() local 14 uu.ll = u; in __ashldi3() 19 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3() 21 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3() 23 w.s.low = (unsigned int) uu.s.low << b; in __ashldi3() 24 w.s.high = ((unsigned int) uu.s.high << b) | carries; in __ashldi3()
|
A D | lshrdi3.c | 8 DWunion uu, w; in __lshrdi3() local 14 uu.ll = u; in __lshrdi3() 19 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3() 21 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3() 23 w.s.high = (unsigned int) uu.s.high >> b; in __lshrdi3() 24 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __lshrdi3()
|
A D | muldi3.c | 49 const DWunion uu = {.ll = u}; in __muldi3() local 51 DWunion w = {.ll = __umulsidi3(uu.s.low, vv.s.low)}; in __muldi3() 53 w.s.high += ((unsigned long) uu.s.low * (unsigned long) vv.s.high in __muldi3() 54 + (unsigned long) uu.s.high * (unsigned long) vv.s.low); in __muldi3()
|
/linux-6.3-rc2/arch/m68k/lib/ |
A D | ashrdi3.c | 39 DIunion uu; in __ashrdi3() local 44 uu.ll = u; in __ashrdi3() 50 w.s.high = uu.s.high >> (sizeof (SItype) * BITS_PER_UNIT - 1); in __ashrdi3() 51 w.s.low = uu.s.high >> -bm; in __ashrdi3() 55 USItype carries = (USItype)uu.s.high << bm; in __ashrdi3() 56 w.s.high = uu.s.high >> b; in __ashrdi3() 57 w.s.low = ((USItype)uu.s.low >> b) | carries; in __ashrdi3()
|
A D | ashldi3.c | 39 DIunion uu; in __ashldi3() local 44 uu.ll = u; in __ashldi3() 50 w.s.high = (USItype)uu.s.low << -bm; in __ashldi3() 54 USItype carries = (USItype)uu.s.low >> bm; in __ashldi3() 55 w.s.low = (USItype)uu.s.low << b; in __ashldi3() 56 w.s.high = ((USItype)uu.s.high << b) | carries; in __ashldi3()
|
A D | lshrdi3.c | 39 DIunion uu; in __lshrdi3() local 44 uu.ll = u; in __lshrdi3() 50 w.s.low = (USItype)uu.s.high >> -bm; in __lshrdi3() 54 USItype carries = (USItype)uu.s.high << bm; in __lshrdi3() 55 w.s.high = (USItype)uu.s.high >> b; in __lshrdi3() 56 w.s.low = ((USItype)uu.s.low >> b) | carries; in __lshrdi3()
|
A D | muldi3.c | 85 DIunion uu, vv; in __muldi3() local 87 uu.ll = u; in __muldi3() 90 w.ll = __umulsidi3 (uu.s.low, vv.s.low); in __muldi3() 91 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high in __muldi3() 92 + (USItype) uu.s.high * (USItype) vv.s.low); in __muldi3()
|
/linux-6.3-rc2/drivers/staging/vt6655/ |
A D | card.c | 387 unsigned int uu; in CARDvSafeResetTx() local 397 for (uu = 0; uu < TYPE_MAXTD; uu++) in CARDvSafeResetTx() 398 priv->iTDUsed[uu] = 0; in CARDvSafeResetTx() 400 for (uu = 0; uu < priv->opts.tx_descs[0]; uu++) { in CARDvSafeResetTx() 401 pCurrTD = &priv->apTD0Rings[uu]; in CARDvSafeResetTx() 405 for (uu = 0; uu < priv->opts.tx_descs[1]; uu++) { in CARDvSafeResetTx() 434 unsigned int uu; in CARDvSafeResetRx() local 442 for (uu = 0; uu < priv->opts.rx_descs0; uu++) { in CARDvSafeResetRx() 443 pDesc = &priv->aRD0Ring[uu]; in CARDvSafeResetRx() 450 for (uu = 0; uu < priv->opts.rx_descs1; uu++) { in CARDvSafeResetRx() [all …]
|
A D | mac.c | 680 unsigned int uu, ii; in MACvTimer0MicroSDelay() local 686 for (uu = 0; uu < uDelay; uu++) { in MACvTimer0MicroSDelay()
|
/linux-6.3-rc2/lib/zlib_inflate/ |
A D | inffast.c | 13 union uu { union 22 union uu mm; in get_unaligned16() 269 union uu mm; in inflate_fast()
|
/linux-6.3-rc2/kernel/sched/ |
A D | cpufreq_schedutil.c | 757 void (*uu)(struct update_util_data *data, u64 time, unsigned int flags); in sugov_start() local 778 uu = sugov_update_shared; in sugov_start() 780 uu = sugov_update_single_perf; in sugov_start() 782 uu = sugov_update_single_freq; in sugov_start() 787 cpufreq_add_update_util_hook(cpu, &sg_cpu->update_util, uu); in sugov_start()
|
/linux-6.3-rc2/drivers/atm/ |
A D | lanai.c | 1186 int len, int cpi, int uu) in vcc_tx_add_aal5_trailer() argument 1191 lvcc->tx.buf.ptr[-2] = cpu_to_be32((uu << 24) | (cpi << 16) | len); in vcc_tx_add_aal5_trailer()
|