| /openbmc/qemu/tests/qtest/fuzz/ |
| H A D | generic_fuzz.c | 350 address_range abs; in op_in() local 356 if (get_pio_address(&abs, a.base, a.offset) == 0) { in op_in() 362 qtest_inb(s, abs.addr); in op_in() 365 if (abs.size >= 2) { in op_in() 366 qtest_inw(s, abs.addr); in op_in() 370 if (abs.size >= 4) { in op_in() 371 qtest_inl(s, abs.addr); in op_in() 386 address_range abs; in op_out() local 393 if (get_pio_address(&abs, a.base, a.offset) == 0) { in op_out() 399 qtest_outb(s, abs.addr, a.value & 0xFF); in op_out() [all …]
|
| /openbmc/qemu/hw/input/ |
| H A D | virtio-input-host.c | 89 config.u.abs.min = cpu_to_le32(absinfo.minimum); in virtio_input_abs_config() 90 config.u.abs.max = cpu_to_le32(absinfo.maximum); in virtio_input_abs_config() 91 config.u.abs.fuzz = cpu_to_le32(absinfo.fuzz); in virtio_input_abs_config() 92 config.u.abs.flat = cpu_to_le32(absinfo.flat); in virtio_input_abs_config() 93 config.u.abs.res = cpu_to_le32(absinfo.resolution); in virtio_input_abs_config() 102 virtio_input_config id, *abs; in virtio_input_host_realize() local 159 abs = virtio_input_find_config(VIRTIO_INPUT(vih), in virtio_input_host_realize() 161 if (abs) { in virtio_input_host_realize() 162 for (i = 0; i < abs->size; i++) { in virtio_input_host_realize() 163 byte = abs->u.bitmap[i]; in virtio_input_host_realize()
|
| H A D | virtio-input-hid.c | 142 move = evt->u.abs.data; in virtio_input_handle_event() 449 .u.abs.min = const_le32(INPUT_EVENT_ABS_MIN), 450 .u.abs.max = const_le32(INPUT_EVENT_ABS_MAX), 455 .u.abs.min = const_le32(INPUT_EVENT_ABS_MIN), 456 .u.abs.max = const_le32(INPUT_EVENT_ABS_MAX), 494 .u.abs.min = const_le32(INPUT_EVENT_ABS_MIN), 495 .u.abs.max = const_le32(INPUT_EVENT_ABS_MAX), 500 .u.abs.min = const_le32(INPUT_EVENT_ABS_MIN), 501 .u.abs.max = const_le32(INPUT_EVENT_ABS_MAX), 566 .u.abs.min = const_le32(INPUT_EVENT_SLOTS_MIN), [all …]
|
| /openbmc/qemu/replay/ |
| H A D | replay-input.c | 58 move = evt->u.abs.data; in replay_save_input_event() 84 InputMoveEvent abs; in replay_read_input_event() local 118 evt.u.abs.data = &abs; in replay_read_input_event() 119 evt.u.abs.data->axis = (InputAxis)replay_get_dword(); in replay_read_input_event() 120 evt.u.abs.data->value = replay_get_qword(); in replay_read_input_event()
|
| /openbmc/u-boot/lib/ |
| H A D | div64.c | 69 quotient = div_u64_rem(-dividend, abs(divisor), (u32 *)remainder); in div_s64_rem() 74 quotient = div_u64_rem(dividend, abs(divisor), (u32 *)remainder); in div_s64_rem() 167 quot = div64_u64(abs(dividend), abs(divisor)); in div64_s64()
|
| /openbmc/google-misc/subprojects/metrics-ipmi-blobs/test/ |
| H A D | util_test.cpp | 71 EXPECT_LT(std::abs(t.utime - 3330.37), EPS); in TEST() 72 EXPECT_LT(std::abs(t.stime - 2461.10), EPS); in TEST() 138 EXPECT_LT(abs(uptime - 266923.67), eps); in TEST() 139 EXPECT_LT(abs(idleProcessTime - 512184.95), eps); in TEST()
|
| /openbmc/qemu/include/standard-headers/linux/ |
| H A D | input.h | 176 #define EVIOCGABS(abs) _IOR('E', 0x40 + (abs), struct input_absinfo) /* get abs value/limits */ argument 177 #define EVIOCSABS(abs) _IOW('E', 0xc0 + (abs), struct input_absinfo) /* set abs value/limits */ argument
|
| H A D | virtio_input.h | 65 struct virtio_input_absinfo abs; member
|
| /openbmc/openbmc/meta-openembedded/meta-oe/recipes-core/sdbus-c++/sdbus-c++-libsystemd/ |
| H A D | 0019-errno-util-Make-STRERROR-portable-for-musl.patch | 25 -#define STRERROR(errnum) strerror_r(abs(errnum), (char[ERRNO_BUF_LEN]){}, ERRNO_BUF_LEN) 31 + return strerror_r(abs(errnum), (char[ERRNO_BUF_LEN]){}, ERRNO_BUF_LEN); 34 + return strerror_r(abs(errnum), buf, ERRNO_BUF_LEN) ? "unknown error" : buf;
|
| H A D | 0010-distinguish-XSI-compliant-strerror_r-from-GNU-specif.patch | 49 + strerror_r(abs(error), buf, ERRNO_BUF_LEN); 52 return strerror_r(abs(error), buf, ERRNO_BUF_LEN);
|
| /openbmc/openbmc/poky/meta/recipes-core/systemd/systemd/ |
| H A D | 0019-errno-util-Make-STRERROR-portable-for-musl.patch | 25 -#define STRERROR(errnum) strerror_r(abs(errnum), (char[ERRNO_BUF_LEN]){}, ERRNO_BUF_LEN) 31 + return strerror_r(abs(errnum), (char[ERRNO_BUF_LEN]){}, ERRNO_BUF_LEN); 34 + return strerror_r(abs(errnum), buf, ERRNO_BUF_LEN) ? "unknown error" : buf;
|
| H A D | 0010-distinguish-XSI-compliant-strerror_r-from-GNU-specif.patch | 49 + strerror_r(abs(error), buf, ERRNO_BUF_LEN); 52 return strerror_r(abs(error), buf, ERRNO_BUF_LEN);
|
| /openbmc/u-boot/test/ |
| H A D | time_ut.c | 94 if (abs(error) > 1000) in test_time_comparison() 113 if (abs(error) > 100) in test_udelay()
|
| /openbmc/openbmc/poky/meta/recipes-devtools/perl/files/ |
| H A D | 0001-Somehow-this-module-breaks-through-the-perl-wrapper-.patch | 24 my ($abs, $use_dir); 26 $abs = $name;
|
| /openbmc/openbmc/poky/scripts/lib/build_perf/ |
| H A D | report.py | 248 hhh = int(abs(self) / 3600) 249 mmm = int((abs(self) % 3600) / 60) 250 sss = abs(self) % 60 284 if abs(self) < 1024: 286 elif abs(self) < 1048576:
|
| /openbmc/qemu/tests/tcg/tricore/asm/ |
| H A D | test_abs.S | 5 TEST_D_D(abs, 1, 0, 0)
|
| /openbmc/qemu/tests/tcg/hexagon/ |
| H A D | test_abs.S | 12 r3 = abs(r1)
|
| /openbmc/openbmc-test-automation/redfish/managers/ |
| H A D | test_managers_bmc_time.robot | 30 ${time_diff}= Evaluate abs(${time_diff}) 49 ${time_diff}= Evaluate abs(${time_diff}) 85 ${time_diff}= Evaluate abs(${time_diff})
|
| /openbmc/qemu/tests/qemu-iotests/ |
| H A D | 298 | 142 self.assertLess(abs(stat.st_size - refstat.st_size), 64 * 1024) 148 self.assertLess(abs(stat.st_blocks - refstat.st_blocks) * 512,
|
| /openbmc/openbmc/meta-openembedded/meta-xfce/recipes-apps/xfce4-notifyd/ |
| H A D | xfce4-notifyd_0.8.2.bb | 19 SRC_URI:append = " file://xfce4-notifyd-get-var-abs-path.patch"
|
| /openbmc/webui-vue/src/assets/styles/bmc/helpers/ |
| H A D | _functions.scss | 28 @return tint-color($color, math.abs($weight));
|
| /openbmc/u-boot/drivers/clk/ |
| H A D | clk-hsdk-cgu.c | 414 if (abs(rate - pll_cfg[i].rate) < abs(rate - best_rate)) in hsdk_pll_round_rate() 618 if (abs(rate - parent_rate / (div_factor + 1)) <= in idiv_set() 619 abs(rate - parent_rate / div_factor)) { in idiv_set()
|
| /openbmc/u-boot/board/freescale/common/ |
| H A D | vid.c | 240 abs(vdd - vdd_current) > (IR_VDD_STEP_UP + IR_VDD_STEP_DOWN) && in wait_for_new_voltage() 268 abs(vdd - vdd_current) > ADC_MIN_ACCURACY && in wait_for_voltage_stable() 349 } while ((abs(temp) > 2) && (count > 0)); in set_voltage_to_LTC()
|
| /openbmc/u-boot/drivers/spi/ |
| H A D | pl022_spi.c | 233 if (abs(speed - tmp) < abs(speed - best_freq)) { in pl022_spi_set_speed()
|
| /openbmc/openbmc-tools/tof-voters/libvoters/subcmd/ |
| H A D | analyze-commits.py | 88 changes += int(file_data["insertions"]) + abs(
|