Home
last modified time | relevance | path

Searched refs:d2h (Results 1 – 3 of 3) sorted by relevance

/qemu/tests/qtest/
H A Dahci-test.c910 RegD2HFIS *d2h = g_malloc0(0x20); in ahci_test_max() local
923 qtest_memread(ahci->parent->qts, ahci->port[port].fb + 0x40, d2h, 0x20); in ahci_test_max()
924 nsect = (uint64_t)d2h->lba_hi[2] << 40 | in ahci_test_max()
925 (uint64_t)d2h->lba_hi[1] << 32 | in ahci_test_max()
926 (uint64_t)d2h->lba_hi[0] << 24 | in ahci_test_max()
927 (uint64_t)d2h->lba_lo[2] << 16 | in ahci_test_max()
928 (uint64_t)d2h->lba_lo[1] << 8 | in ahci_test_max()
929 (uint64_t)d2h->lba_lo[0]; in ahci_test_max()
932 g_free(d2h); in ahci_test_max()
/qemu/tests/qtest/libqos/
H A Dahci.c520 RegD2HFIS *d2h = g_malloc0(0x20); in ahci_port_check_d2h_sanity() local
523 qtest_memread(ahci->parent->qts, ahci->port[port].fb + 0x40, d2h, 0x20); in ahci_port_check_d2h_sanity()
524 g_assert_cmphex(d2h->fis_type, ==, 0x34); in ahci_port_check_d2h_sanity()
527 g_assert_cmphex((reg & AHCI_PX_TFD_ERR) >> 8, ==, d2h->error); in ahci_port_check_d2h_sanity()
528 g_assert_cmphex((reg & AHCI_PX_TFD_STS), ==, d2h->status); in ahci_port_check_d2h_sanity()
530 g_free(d2h); in ahci_port_check_d2h_sanity()
/qemu/fpu/
H A Dsoftfloat-parts.c.inc705 uint64_t d0h, d0l, d1h, d1l, d2h, d2l;
863 add128(sh, sl, 0, 1, &d2h, &d2l);
864 add128(d2h, d2l, d1h, d1l, &d2h, &d2l);
869 if (d2h | d2l) {
870 if ((int64_t)(d1h ^ d2h) < 0) {