Home
last modified time | relevance | path

Searched full:high (Results 1 – 25 of 3689) sorted by relevance

12345678910>>...148

/openbmc/linux/Documentation/userspace-api/media/v4l/
Dpixfmt-srggb10-ipu3.rst
Dpixfmt-tch-tu16.rst
Dpixfmt-z16.rst
Dpixfmt-tch-td16.rst
Dpixfmt-srggb12.rst
Dpixfmt-srggb10.rst
Dpixfmt-srggb14.rst
Dpixfmt-srggb16.rst
Dpixfmt-srggb10p.rst
/openbmc/qemu/include/qemu/
H A Dstats64.h26 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
84 high = value >> 32; in stat64_add()
87 if (high) { in stat64_add()
88 qatomic_add(&s->high, high); in stat64_add()
98 if (result < low || high) { in stat64_add()
99 /* If the high part is affected, take the lock. */ in stat64_add()
100 if (stat64_add32_carry(s, low, high)) { in stat64_add()
[all …]
/openbmc/linux/arch/arm/boot/dts/nuvoton/
Dnuvoton-npcm750-pincfg-evb.dtsi
/openbmc/qemu/util/
H A Dstats64.c46 uint32_t high, low; in stat64_get() local
53 high = qatomic_read(&s->high); in stat64_get()
57 return ((uint64_t)high << 32) | low; in stat64_get()
66 qatomic_set(&s->high, val >> 32); in stat64_set()
71 bool stat64_add32_carry(Stat64 *s, uint32_t low, uint32_t high) in stat64_add32_carry() argument
82 * whether we have to carry into s->high. in stat64_add32_carry()
85 high += (old + low) < old; in stat64_add32_carry()
86 qatomic_add(&s->high, high); in stat64_add32_carry()
93 uint32_t high, low; in stat64_min_slow() local
101 high = qatomic_read(&s->high); in stat64_min_slow()
[all …]
/openbmc/linux/arch/arm64/include/asm/
Dstacktrace.h
/openbmc/linux/drivers/net/ethernet/sfc/falcon/
Dbitfield.h
/openbmc/u-boot/arch/x86/include/asm/
H A Dmsr.h50 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/linux/drivers/net/ethernet/sfc/siena/
Dbitfield.h
/openbmc/linux/drivers/net/ethernet/sfc/
Dbitfield.h
/openbmc/linux/tools/testing/selftests/drivers/net/netdevsim/
Dethtool-coalesce.sh
/openbmc/linux/drivers/net/ethernet/engleder/
Dtsnep_ptp.c
/openbmc/u-boot/arch/arc/lib/
H A Dlibgcc2.c20 w.s.high = (UWtype)uu.s.low << -bm; in __ashldi3()
25 w.s.high = ((UWtype)uu.s.high << b) | carries; in __ashldi3()
42 /* w.s.high = 1..1 or 0..0 */ in __ashrdi3()
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()
66 w.s.high = 0; in __lshrdi3()
67 w.s.low = (UWtype)uu.s.high >> -bm; in __lshrdi3()
69 const UWtype carries = (UWtype)uu.s.high << bm; in __lshrdi3()
[all …]
/openbmc/linux/include/linux/mfd/
Dac100.h
/openbmc/linux/include/linux/
Dio-64-nonatomic-hi-lo.h
Dio-64-nonatomic-lo-hi.h
/openbmc/u-boot/arch/nios2/lib/
H A Dlibgcc.c24 struct DWstruct { Wtype low, high;}; member
63 w.s.high = (UWtype) uu.s.low << -bm; in __ashldi3()
70 w.s.high = ((UWtype) uu.s.high << b) | carries; in __ashldi3()
88 /* w.s.high = 1..1 or 0..0 */ in __ashrdi3()
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()
115 w.s.high = 0; in __lshrdi3()
116 w.s.low = (UWtype) uu.s.high >> -bm; in __lshrdi3()
[all …]
/openbmc/linux/Documentation/devicetree/bindings/regulator/
Drichtek,rtmv20-regulator.yaml

12345678910>>...148