Home
last modified time | relevance | path

Searched refs:uu (Results 1 – 25 of 48) sorted by relevance

12

/openbmc/qemu/util/
H A Duuid.c40 int qemu_uuid_is_null(const QemuUUID *uu) in qemu_uuid_is_null() argument
43 return qemu_uuid_is_equal(uu, &null_uuid); in qemu_uuid_is_null()
53 const unsigned char *uu = &uuid->data[0]; in qemu_uuid_unparse() local
55 uu[0], uu[1], uu[2], uu[3], uu[4], uu[5], uu[6], uu[7], in qemu_uuid_unparse()
56 uu[8], uu[9], uu[10], uu[11], uu[12], uu[13], uu[14], uu[15]); in qemu_uuid_unparse()
61 const unsigned char *uu = &uuid->data[0]; in qemu_uuid_unparse_strdup() local
63 uu[0], uu[1], uu[2], uu[3], uu[4], uu[5], uu[6], in qemu_uuid_unparse_strdup()
64 uu[7], uu[8], uu[9], uu[10], uu[11], uu[12], in qemu_uuid_unparse_strdup()
65 uu[13], uu[14], uu[15]); in qemu_uuid_unparse_strdup()
92 unsigned char *uu = &uuid->data[0]; in qemu_uuid_parse() local
[all …]
/openbmc/u-boot/arch/arc/lib/
H A Dlibgcc2.c14 const DWunion uu = {.ll = u}; in __ashldi3() local
20 w.s.high = (UWtype)uu.s.low << -bm; in __ashldi3()
22 const UWtype carries = (UWtype) uu.s.low >> bm; in __ashldi3()
24 w.s.low = (UWtype)uu.s.low << b; in __ashldi3()
25 w.s.high = ((UWtype)uu.s.high << b) | carries; in __ashldi3()
37 const DWunion uu = {.ll = u}; in __ashrdi3() local
43 w.s.high = uu.s.high >> (W_TYPE_SIZE - 1); in __ashrdi3()
44 w.s.low = uu.s.high >> -bm; in __ashrdi3()
46 const UWtype carries = (UWtype) uu.s.high << bm; in __ashrdi3()
48 w.s.high = uu.s.high >> b; in __ashrdi3()
[all …]
/openbmc/u-boot/arch/nios2/lib/
H A Dlibgcc.c56 const DWunion uu = {.ll = u}; in __ashldi3() local
63 w.s.high = (UWtype) uu.s.low << -bm; in __ashldi3()
67 const UWtype carries = (UWtype) uu.s.low >> bm; in __ashldi3()
69 w.s.low = (UWtype) uu.s.low << b; in __ashldi3()
70 w.s.high = ((UWtype) uu.s.high << b) | carries; in __ashldi3()
82 const DWunion uu = {.ll = u}; in __ashrdi3() local
89 w.s.high = uu.s.high >> (sizeof (Wtype) * BITS_PER_UNIT - 1); in __ashrdi3()
90 w.s.low = uu.s.high >> -bm; in __ashrdi3()
94 const UWtype carries = (UWtype) uu.s.high << bm; in __ashrdi3()
96 w.s.high = uu.s.high >> b; in __ashrdi3()
[all …]
/openbmc/u-boot/arch/mips/lib/
H A Dashrdi3.c5 DWunion uu, w; in __ashrdi3() local
11 uu.ll = u; in __ashrdi3()
17 uu.s.high >> 31; in __ashrdi3()
18 w.s.low = uu.s.high >> -bm; in __ashrdi3()
20 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
22 w.s.high = uu.s.high >> b; in __ashrdi3()
23 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __ashrdi3()
H A Dlshrdi3.c5 DWunion uu, w; in __lshrdi3() local
11 uu.ll = u; in __lshrdi3()
16 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
18 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
20 w.s.high = (unsigned int) uu.s.high >> b; in __lshrdi3()
21 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __lshrdi3()
H A Dashldi3.c5 DWunion uu, w; in __ashldi3() local
11 uu.ll = u; in __ashldi3()
16 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
18 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
20 w.s.low = (unsigned int) uu.s.low << b; in __ashldi3()
21 w.s.high = ((unsigned int) uu.s.high << b) | carries; in __ashldi3()
/openbmc/u-boot/arch/sh/lib/
H A Dashrdi3.c5 DWunion uu, w; in __ashrdi3() local
11 uu.ll = u; in __ashrdi3()
17 uu.s.high >> 31; in __ashrdi3()
18 w.s.low = uu.s.high >> -bm; in __ashrdi3()
20 const unsigned int carries = (unsigned int) uu.s.high << bm; in __ashrdi3()
22 w.s.high = uu.s.high >> b; in __ashrdi3()
23 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __ashrdi3()
H A Dashldi3.c5 DWunion uu, w; in __ashldi3() local
11 uu.ll = u; in __ashldi3()
16 w.s.high = (unsigned int) uu.s.low << -bm; in __ashldi3()
18 const unsigned int carries = (unsigned int) uu.s.low >> bm; in __ashldi3()
20 w.s.low = (unsigned int) uu.s.low << b; in __ashldi3()
21 w.s.high = ((unsigned int) uu.s.high << b) | carries; in __ashldi3()
H A Dlshrdi3.c5 DWunion uu, w; in __lshrdi3() local
11 uu.ll = u; in __lshrdi3()
16 w.s.low = (unsigned int) uu.s.high >> -bm; in __lshrdi3()
18 const unsigned int carries = (unsigned int) uu.s.high << bm; in __lshrdi3()
20 w.s.high = (unsigned int) uu.s.high >> b; in __lshrdi3()
21 w.s.low = ((unsigned int) uu.s.low >> b) | carries; in __lshrdi3()
/openbmc/linux/lib/
H A Dashrdi3.c11 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()
H A Dlshrdi3.c11 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()
H A Dashldi3.c11 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()
H A Dmuldi3.c51 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()
/openbmc/linux/arch/microblaze/lib/
H A Dashrdi3.c8 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()
H A Dlshrdi3.c8 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()
H A Dashldi3.c8 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()
/openbmc/linux/arch/m68k/lib/
H A Dashrdi3.c39 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()
H A Dlshrdi3.c39 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()
H A Dashldi3.c39 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()
H A Dmuldi3.c85 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()
/openbmc/u-boot/arch/m68k/lib/
H A Dashldi3.c28 DIunion uu; in __ashldi3() local
33 uu.ll = u; in __ashldi3()
39 w.s.high = (USItype)uu.s.low << -bm; in __ashldi3()
43 USItype carries = (USItype)uu.s.low >> bm; in __ashldi3()
44 w.s.low = (USItype)uu.s.low << b; in __ashldi3()
45 w.s.high = ((USItype)uu.s.high << b) | carries; in __ashldi3()
H A Dlshrdi3.c28 DIunion uu; in __lshrdi3() local
33 uu.ll = u; in __lshrdi3()
39 w.s.low = (USItype)uu.s.high >> -bm; in __lshrdi3()
43 USItype carries = (USItype)uu.s.high << bm; in __lshrdi3()
44 w.s.high = (USItype)uu.s.high >> b; in __lshrdi3()
45 w.s.low = ((USItype)uu.s.low >> b) | carries; in __lshrdi3()
H A Dmuldi3.c60 DIunion uu, vv; in __muldi3() local
62 uu.ll = u, in __muldi3()
65 w.ll = __umulsidi3 (uu.s.low, vv.s.low); in __muldi3()
66 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high in __muldi3()
67 + (USItype) uu.s.high * (USItype) vv.s.low); in __muldi3()
/openbmc/linux/drivers/staging/vt6655/
H A Dcard.c387 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()
406 pCurrTD = &priv->apTD1Rings[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()
[all …]
/openbmc/u-boot/arch/microblaze/lib/
H A Dmuldi3.c65 DIunion uu, vv; in __muldi3() local
67 uu.ll = u, vv.ll = v; in __muldi3()
69 w.ll = __umulsidi3(uu.s.low, vv.s.low); in __muldi3()
70 w.s.high += ((USItype) uu.s.low * (USItype) vv.s.high in __muldi3()
71 + (USItype) uu.s.high * (USItype) vv.s.low); in __muldi3()

12