| /openbmc/u-boot/arch/x86/include/asm/ |
| H A D | msr.h | 50 unsigned long low, high; in native_read_tscp() local 52 : "=a" (low), "=d" (high), "=c" (*aux)); in native_read_tscp() 53 return low | ((u64)high << 32); in native_read_tscp() 63 #define DECLARE_ARGS(val, low, high) unsigned low, high argument 64 #define EAX_EDX_VAL(val, low, high) ((low) | ((u64)(high) << 32)) argument 65 #define EAX_EDX_ARGS(val, low, high) "a" (low), "d" (high) argument 66 #define EAX_EDX_RET(val, low, high) "=a" (low), "=d" (high) argument 68 #define DECLARE_ARGS(val, low, high) unsigned long long val argument 69 #define EAX_EDX_VAL(val, low, high) (val) argument 70 #define EAX_EDX_ARGS(val, low, high) "A" (val) argument [all …]
|
| /openbmc/qemu/util/ |
| H A D | stats64.c | 46 uint32_t high, low; in stat64_get() local 54 low = qatomic_read(&s->low); in stat64_get() 57 return ((uint64_t)high << 32) | low; in stat64_get() 67 qatomic_set(&s->low, val); in stat64_set() 71 bool stat64_add32_carry(Stat64 *s, uint32_t low, uint32_t high) in stat64_add32_carry() argument 84 old = qatomic_fetch_add(&s->low, low); in stat64_add32_carry() 85 high += (old + low) < old; in stat64_add32_carry() 93 uint32_t high, low; in stat64_min_slow() local 102 low = qatomic_read(&s->low); in stat64_min_slow() 104 orig = ((uint64_t)high << 32) | low; in stat64_min_slow() [all …]
|
| /openbmc/qemu/include/qemu/ |
| H A D | stats64.h | 26 uint32_t low, high; 73 bool stat64_add32_carry(Stat64 *s, uint32_t low, uint32_t high); 78 *s = (Stat64) { .low = value, .high = value >> 32, .lock = 0 }; in stat64_init() 83 uint32_t low, high; in stat64_add() local 85 low = (uint32_t) value; in stat64_add() 86 if (!low) { in stat64_add() 94 uint32_t orig = s->low; in stat64_add() 95 uint32_t result = orig + low; in stat64_add() 98 if (result < low || high) { in stat64_add() 100 if (stat64_add32_carry(s, low, high)) { in stat64_add() [all …]
|
| /openbmc/u-boot/doc/device-tree-bindings/leds/ |
| H A D | leds-bcm6358.txt | 18 - brcm,clk-dat-low : Boolean, makes clock and data signals active low. 28 - active-low : Boolean, makes LED active low. 41 active-low; 46 active-low; 51 active-low; 56 active-low; 67 brcm,pol-low; 72 active-low; 77 active-low; 87 active-low; [all …]
|
| H A D | leds-bcm6328.txt | 24 - brcm,serial-clk-low : Boolean, makes clock signal active low. 26 - brcm,serial-dat-low : Boolean, makes data signal active low. 38 - active-low : Boolean, makes LED active low. 51 active-low; 56 active-low; 61 active-low; 73 brcm,serial-dat-low; 78 active-low; 83 active-low; 88 active-low; [all …]
|
| /openbmc/u-boot/include/zfs/ |
| H A D | spa.h | 17 #define BF32_DECODE(x, low, len) P2PHASE((x) >> (low), 1U << (len)) argument 18 #define BF64_DECODE(x, low, len) P2PHASE((x) >> (low), 1ULL << (len)) argument 19 #define BF32_ENCODE(x, low, len) (P2PHASE((x), 1U << (len)) << (low)) argument 20 #define BF64_ENCODE(x, low, len) (P2PHASE((x), 1ULL << (len)) << (low)) argument 22 #define BF32_GET(x, low, len) BF32_DECODE(x, low, len) argument 23 #define BF64_GET(x, low, len) BF64_DECODE(x, low, len) argument 25 #define BF32_SET(x, low, len, val) \ argument 26 ((x) ^= BF32_ENCODE((x >> low) ^ (val), low, len)) 27 #define BF64_SET(x, low, len, val) \ argument 28 ((x) ^= BF64_ENCODE((x >> low) ^ (val), low, len)) [all …]
|
| /openbmc/u-boot/arch/nios2/lib/ |
| H A D | libgcc.c | 24 struct DWstruct { Wtype low, high;}; member 62 w.s.low = 0; in __ashldi3() 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() 90 w.s.low = uu.s.high >> -bm; in __ashrdi3() 97 w.s.low = ((UWtype) uu.s.low >> b) | carries; in __ashrdi3() 116 w.s.low = (UWtype) uu.s.high >> -bm; in __lshrdi3() 123 w.s.low = ((UWtype) uu.s.low >> b) | carries; in __lshrdi3() 139 if ((UWtype) au.s.low < (UWtype) bu.s.low) in __cmpdi2() [all …]
|
| /openbmc/qemu/hw/s390x/ |
| H A D | tod-tcg.c | 26 tod->low += time2tod(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL)); in qemu_s390_tod_get() 27 if (tod->low < td->base.low) { in qemu_s390_tod_get() 39 td->base.low -= time2tod(qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL)); in qemu_s390_tod_set() 40 if (td->base.low > tod->low) { in qemu_s390_tod_set() 70 td->base.low = TOD_UNIX_EPOCH + (time2tod(mktimegm(&tm)) * 1000000000ULL); in qemu_s390_tod_init() 71 if (td->base.low < TOD_UNIX_EPOCH) { in qemu_s390_tod_init()
|
| /openbmc/u-boot/arch/mips/dts/ |
| H A D | netgear,dgnd3700v2.dts | 71 brcm,serial-dat-low; 82 active-low; 88 active-low; 94 active-low; 100 active-low; 106 active-low; 112 active-low; 118 active-low; 124 active-low; 130 active-low;
|
| H A D | netgear,cg3100d.dts | 47 active-low; 53 active-low; 59 active-low; 65 active-low; 71 active-low; 77 active-low; 83 active-low;
|
| H A D | comtrend,ar-5315u.dts | 64 active-low; 70 active-low; 76 active-low; 82 active-low; 88 active-low; 94 active-low; 100 active-low;
|
| H A D | comtrend,vr-3032u.dts | 62 brcm,serial-dat-low; 67 active-low; 73 active-low; 79 active-low; 85 active-low; 91 active-low; 97 active-low;
|
| /openbmc/qemu/target/i386/tcg/ |
| H A D | mem_helper.c | 31 int low, high; in helper_boundw() local 33 low = cpu_ldsw_data_ra(env, a0, GETPC()); in helper_boundw() 36 if (v < low || v > high) { in helper_boundw() 46 int low, high; in helper_boundl() local 48 low = cpu_ldl_data_ra(env, a0, GETPC()); in helper_boundl() 50 if (v < low || v > high) { in helper_boundl()
|
| /openbmc/u-boot/arch/arc/lib/ |
| H A D | libgcc2.c | 19 w.s.low = 0; in __ashldi3() 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() 44 w.s.low = uu.s.high >> -bm; in __ashrdi3() 49 w.s.low = ((UWtype)uu.s.low >> b) | carries; in __ashrdi3() 67 w.s.low = (UWtype)uu.s.high >> -bm; in __lshrdi3() 72 w.s.low = ((UWtype)uu.s.low >> b) | carries; in __lshrdi3()
|
| /openbmc/u-boot/arch/m68k/lib/ |
| H A D | ashldi3.c | 16 struct DIstruct {SItype high, low;}; member 38 w.s.low = 0; 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()
|
| H A D | muldi3.c | 41 umul_ppmm (__w.s.high, __w.s.low, u, v); \ 49 struct DIstruct {SItype high, low;}; member 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()
|
| H A D | lshrdi3.c | 16 struct DIstruct {SItype high, low;}; member 39 w.s.low = (USItype)uu.s.high >> -bm; in __lshrdi3() 45 w.s.low = ((USItype)uu.s.low >> b) | carries; in __lshrdi3()
|
| /openbmc/u-boot/arch/sh/lib/ |
| H A D | ashldi3.c | 15 w.s.low = 0; 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()
|
| /openbmc/u-boot/arch/mips/lib/ |
| H A D | ashldi3.c | 15 w.s.low = 0; 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()
|
| /openbmc/u-boot/include/linux/ |
| H A D | math64.h | 189 u32 high, low; in mul_u64_u64_shr() member 191 u32 low, high; in mul_u64_u64_shr() 200 rl.ll = mul_u32_u32(a0.l.low, b0.l.low); in mul_u64_u64_shr() 201 rm.ll = mul_u32_u32(a0.l.low, b0.l.high); in mul_u64_u64_shr() 202 rn.ll = mul_u32_u32(a0.l.high, b0.l.low); in mul_u64_u64_shr() 210 rl.l.high = c = (u64)rl.l.high + rm.l.low + rn.l.low; in mul_u64_u64_shr() 211 rh.l.low = c = (c >> 32) + rm.l.high + rn.l.high + rh.l.low; in mul_u64_u64_shr() 235 u32 high, low; in mul_u64_u32_div() member 237 u32 low, high; in mul_u64_u32_div() 243 rl.ll = mul_u32_u32(u.l.low, mul); in mul_u64_u32_div() [all …]
|
| /openbmc/qemu/tests/unit/ |
| H A D | test-div128.c | 25 uint64_t low; member 34 uint64_t low; member 168 rem = divu128(&tmp.low, &tmp.high, tmp.divisor); in test_divu128() 169 g_assert_cmpuint(tmp.low, ==, tmp.rlow); in test_divu128() 184 rem = divs128(&tmp.low, &tmp.high, tmp.divisor); in test_divs128() 185 g_assert_cmpuint(tmp.low, ==, tmp.rlow); in test_divs128()
|
| H A D | test-shift128.c | 13 uint64_t low; member 114 ulshift(&tmp.low, &tmp.high, tmp.shift, &overflow); in test_lshift() 115 g_assert_cmpuint(tmp.low, ==, tmp.rlow); in test_lshift() 127 urshift(&tmp.low, &tmp.high, tmp.shift); in test_rshift() 128 g_assert_cmpuint(tmp.low, ==, tmp.rlow); in test_rshift()
|
| /openbmc/qemu/tests/qemu-iotests/ |
| H A D | 243.out | 7 Disk usage: low 13 Disk usage: low 32 qcow2 disk usage: low 33 data disk usage: low 40 qcow2 disk usage: low 41 data disk usage: low 48 qcow2 disk usage: low 56 qcow2 disk usage: low
|
| /openbmc/u-boot/arch/microblaze/lib/ |
| H A D | muldi3.c | 45 umul_ppmm(__w.s.high, __w.s.low, u, v); \ 55 SItype low, high; member 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()
|
| /openbmc/u-boot/lib/zlib/ |
| H A D | inftrees.c | 47 unsigned low; /* low bits for current root entry */ in inflate_table() local 203 low = (unsigned)(-1); /* trigger new sub-table when len > root */ in inflate_table() 256 if (len > root && (huff & mask) != low) { in inflate_table() 280 low = huff & mask; in inflate_table() 281 (*table)[low].op = (unsigned char)curr; in inflate_table() 282 (*table)[low].bits = (unsigned char)root; in inflate_table() 283 (*table)[low].val = (unsigned short)(next - *table); in inflate_table() 299 if (drop != 0 && (huff & mask) != low) { in inflate_table()
|