| /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 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/qemu/util/ |
| H A D | stats64.c | 46 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/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/u-boot/arch/arc/lib/ |
| H A D | libgcc2.c | 20 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/u-boot/arch/nios2/lib/ |
| H A D | libgcc.c | 24 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/u-boot/arch/mips/lib/ |
| H A D | ashrdi3.c | 15 /* w.s.high = 1..1 or 0..0 */ in __ashrdi3() 16 w.s.high = 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()
|
| H A D | lshrdi3.c | 15 w.s.high = 0; 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()
|
| /openbmc/u-boot/arch/sh/lib/ |
| H A D | ashrdi3.c | 15 /* w.s.high = 1..1 or 0..0 */ in __ashrdi3() 16 w.s.high = 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()
|
| H A D | lshrdi3.c | 15 w.s.high = 0; 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()
|
| /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() 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() 203 rh.ll = mul_u32_u32(a0.l.high, b0.l.high); in mul_u64_u64_shr() 208 * multiplication, the high 32-bits are carried into the next step. 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() 212 rh.l.high = (c >> 32) + rh.l.high; in mul_u64_u64_shr() 216 * shift it right and throw away the high part of the result. in mul_u64_u64_shr() [all …]
|
| /openbmc/entity-manager/test/ |
| H A D | test_gpio_presence_state.cpp | 36 // Test DevicePresence constructor with single GPIO, active high 40 std::vector<uint64_t> gpioValues = {1}; // Active high in TEST_F() 55 std::vector<uint64_t> gpioValues = {0, 1, 0}; // Active low, high, low in TEST_F() 84 // Test DevicePresence isPresent method with active low GPIO is high (device 93 localGpioState["GPIO1"] = true; // GPIO is high in TEST_F() 100 // Test DevicePresence isPresent method with active high GPIO is high (device 106 std::vector<uint64_t> gpioValues = {1}; // Active high in TEST_F() 109 localGpioState["GPIO1"] = true; // GPIO is high in TEST_F() 116 // Test DevicePresence isPresent method with active high GPIO is low (device 122 std::vector<uint64_t> gpioValues = {1}; // Active high in TEST_F() [all …]
|
| /openbmc/u-boot/drivers/ddr/marvell/axp/ |
| H A D | ddr3_axp_mc_static.h | 17 /* {0x0000140C, 0x38000C6A}, *//*DDR SDRAM Timing (High) Register */ 18 {0x0000140C, 0x38d83fe0}, /*DDR SDRAM Timing (High) Register */ 29 {0x00001424, 0x0000D3FF}, /*Dunit Control High Register */ 30 {0x00001428, 0x000F8830}, /*Dunit Control High Register */ 31 {0x0000142C, 0x214C2F38}, /*Dunit Control High Register */ 39 {0x00001498, 0x00000000}, /*DDR SDRAM ODT Control (High) Register */ 75 /* {0x0000140C, 0x38000C6A}, *//*DDR SDRAM Timing (High) Register */ 76 {0x0000140C, 0x38d83fe0}, /*DDR SDRAM Timing (High) Register */ 87 {0x00001424, 0x0000D3FF}, /*Dunit Control High Register */ 88 {0x00001428, 0x000F8830}, /*Dunit Control High Register */ [all …]
|
| /openbmc/u-boot/arch/m68k/lib/ |
| H A D | lshrdi3.c | 16 struct DIstruct {SItype high, low;}; member 38 w.s.high = 0; 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()
|
| /openbmc/phosphor-logging/extensions/openpower-pels/registry/ |
| H A D | message_registry.json | 240 { "Priority": "high", "Procedure": "BMC0001" } 269 "Priority": "high", 294 { "Priority": "high", "Procedure": "BMC0001" } 318 { "Priority": "high", "Procedure": "BMC0001" } 342 { "Priority": "high", "Procedure": "BMC0001" } 415 { "Priority": "high", "Procedure": "BMC0001" } 457 { "Priority": "high", "Procedure": "BMC0001" }, 481 { "Priority": "high", "Procedure": "BMC0001" } 520 "CalloutList": [{ "Priority": "high", "LocCode": "P0" }] 741 { "Priority": "high", "Procedure": "BMC0001" } [all …]
|
| /openbmc/phosphor-logging/test/openpower-pels/ |
| H A D | src_callout_test.cpp | 157 Callout callout{CalloutPriority::high, "U99-42.5-P1-C2-E1", "1234567", in TEST() 181 Callout callout{CalloutPriority::high, "123", "1234567", "ABCD", in TEST() 192 Callout callout{CalloutPriority::high, "1234", "1234567", "ABCD", in TEST() 204 Callout callout{CalloutPriority::high, locCode, "1234567", "ABCD", in TEST() 219 Callout callout{CalloutPriority::high, locCode, "1234567", "ABCD", in TEST() 272 Callout callout{CalloutPriority::high, "U99-P5", "1234567", "ABCD", in TEST() 350 Callout callout{CalloutPriority::high, "service_docs", "P1-C3", false}; in TEST() 371 Callout callout{CalloutPriority::high, "service_docs", "", false}; in TEST() 392 Callout callout{CalloutPriority::high, "service_docs", "P1-C3", true}; in TEST() 414 Callout callout{CalloutPriority::high, "SYMBFRU", in TEST() [all …]
|
| H A D | service_indicators_test.cpp | 43 // Test that only high, medium, and medium group A hardware 52 testCallouts{{CalloutPriority::high, {"U27-P1"}}, in TEST() 85 std::make_unique<src::Callout>(CalloutPriority::high, "U27-P1", in TEST() 96 CalloutPriority::high, "service_docs", "U27-P1", true)); in TEST() 106 CalloutPriority::high, "service_docs", "U27-P1", false)); in TEST() 116 std::make_unique<src::Callout>(CalloutPriority::high, "bmc_code")); in TEST() 125 // together with priorities of high, medium, or medium group A 132 // high/high/medium/high just grabs the first 2 in TEST() 136 std::make_unique<src::Callout>(CalloutPriority::high, "U27-P1", in TEST() 139 std::make_unique<src::Callout>(CalloutPriority::high, "U27-P2", in TEST() [all …]
|
| /openbmc/u-boot/lib/ |
| H A D | div64.c | 33 uint32_t high = rem >> 32; in __div64_32() local 37 if (high >= base) { in __div64_32() 38 high /= base; in __div64_32() 39 res = (uint64_t) high << 32; in __div64_32() 40 rem -= (uint64_t) (high*base) << 32; in __div64_32() 97 u32 high = divisor >> 32; in div64_u64_rem() local 100 if (high == 0) { in div64_u64_rem() 105 int n = 1 + fls(high); in div64_u64_rem() 137 u32 high = divisor >> 32; in div64_u64() local 140 if (high == 0) { in div64_u64() [all …]
|
| /openbmc/openbmc/meta-quanta/meta-q71l/recipes-phosphor/quanta-powerctrl/files/ |
| H A D | init_once.sh | 18 set_gpio_active_low $((GPIO_BASE + 128 + 4)) high 21 set_gpio_active_low $((GPIO_BASE + 128 + 6)) high 24 set_gpio_active_low $((GPIO_BASE + 0 + 3)) high 27 set_gpio_active_low $((GPIO_BASE + 32 + 4)) high 30 set_gpio_active_low $((GPIO_BASE + 24 + 3)) high
|
| /openbmc/u-boot/arch/arm/mach-socfpga/ |
| H A D | freeze_controller.c | 53 * active high csrdone in sys_mgr_frzctrl_freeze_req() 77 * de-assert active high csrdone and assert in sys_mgr_frzctrl_freeze_req() 78 * active high frzreg and nfrzdrv signals in sys_mgr_frzctrl_freeze_req() 91 * assert active high reinit signal and de-assert in sys_mgr_frzctrl_freeze_req() 92 * active high pllbiasen signals in sys_mgr_frzctrl_freeze_req() 124 * de-assert active high csrdone in sys_mgr_frzctrl_thaw_req() 152 /* de-assert active high reinit signal */ in sys_mgr_frzctrl_thaw_req() 158 * assert active high pllbiasen signals in sys_mgr_frzctrl_thaw_req() 169 * assert active high csrdone and nfrzdrv signal in sys_mgr_frzctrl_thaw_req() 194 * de-assert active high frzreg signal in sys_mgr_frzctrl_thaw_req()
|
| /openbmc/qemu/target/i386/tcg/ |
| H A D | mem_helper.c | 31 int low, high; in helper_boundw() local 34 high = cpu_ldsw_data_ra(env, a0 + 2, GETPC()); in helper_boundw() 36 if (v < low || v > high) { in helper_boundw() 46 int low, high; in helper_boundl() local 49 high = cpu_ldl_data_ra(env, a0 + 4, GETPC()); in helper_boundl() 50 if (v < low || v > high) { in helper_boundl()
|
| /openbmc/u-boot/arch/arm/dts/ |
| H A D | tegra30-cardhu.dts | 238 enable-active-high; 251 enable-active-high; 263 enable-active-high; 274 enable-active-high; 284 enable-active-high; 295 enable-active-high; 306 enable-active-high; 317 enable-active-high; 330 enable-active-high; 341 enable-active-high; [all …]
|
| /openbmc/u-boot/doc/device-tree-bindings/video/ |
| H A D | displaymode.txt | 16 - hsync-active-high (bool): Hsync pulse is active high 17 - vsync-active-high (bool): Vsync pulse is active high 41 hsync-active-high;
|
| /openbmc/entity-manager/configurations/intel/ |
| H A D | bnp_baseboard.json | 35 "Polarity": "High", 42 "Polarity": "High", 49 "Polarity": "High", 56 "Polarity": "High", 63 "Polarity": "High",
|
| /openbmc/entity-manager/configurations/meta/anacapa/ |
| H A D | anacapa_scm.json | 147 "Polarity": "High", 205 "Polarity": "High", 213 "Polarity": "High", 221 "Polarity": "High", 229 "Polarity": "High", 237 "Polarity": "High", 245 "Polarity": "High", 253 "Polarity": "High", 275 "Polarity": "High"
|
| /openbmc/qemu/hw/microblaze/ |
| H A D | boot.c | 141 uint64_t entry, high; in microblaze_load_kernel() local 146 &entry, NULL, &high, NULL, in microblaze_load_kernel() 167 high = (loadaddr + kernel_size + 3) & ~3; in microblaze_load_kernel() 175 high = (ddr_base + kernel_size + 3) & ~3; in microblaze_load_kernel() 182 high = ROUND_UP(high + kernel_size, 4); in microblaze_load_kernel() 183 boot_info.initrd_start = high; in microblaze_load_kernel() 200 high = ROUND_UP(high + initrd_size, 4); in microblaze_load_kernel() 203 boot_info.cmdline = high + 4096; in microblaze_load_kernel()
|