Home
last modified time | relevance | path

Searched refs:uval (Results 1 – 8 of 8) sorted by relevance

/qemu/tests/unit/
H A Dcheck-qjson.c808 uint64_t uval; in int_number() local
819 g_assert(qnum_get_try_uint(qnum, &uval)); in int_number()
820 g_assert_cmpuint(uval, ==, (uint64_t)test_cases[i].decoded); in int_number()
822 g_assert(!qnum_get_try_uint(qnum, &uval)); in int_number()
850 uint64_t uval; in uint_number() local
858 g_assert(qnum_get_try_uint(qnum, &uval)); in uint_number()
859 g_assert_cmpuint(uval, ==, test_cases[i].decoded); in uint_number()
891 uint64_t uval; in float_number() local
901 g_assert(!qnum_get_try_uint(qnum, &uval)); in float_number()
/qemu/hw/xen/
H A Dxen_pvdev.c128 int xenstore_read_uint64(const char *base, const char *node, uint64_t *uval) in xenstore_read_uint64() argument
134 if (val && 1 == sscanf(val, "%"SCNu64, uval)) { in xenstore_read_uint64()
H A Dxen-legacy-backend.c89 uint64_t *uval) in xenstore_read_fe_uint64() argument
91 return xenstore_read_uint64(xendev->fe, node, uval); in xenstore_read_fe_uint64()
/qemu/include/hw/xen/
H A Dxen_pvdev.h67 int xenstore_read_uint64(const char *base, const char *node, uint64_t *uval);
H A Dxen-legacy-backend.h37 uint64_t *uval);
/qemu/tcg/s390x/
H A Dtcg-target.c.inc555 uint64_t uval = val;
561 uval = (uint32_t)val;
585 if (is_const_p16(uval) >= 0) {
588 if (risbg_mask(uval)) {
897 tcg_target_ulong uval = sval;
902 uval = (uint32_t)sval;
912 i = is_const_p16(uval);
924 i = is_const_p32(uval);
941 i = is_const_p16((uint32_t)uval);
947 uval >>= 32;
[all …]
/qemu/tcg/ppc/
H A Dtcg-target.c.inc293 uint64_t uval = sval;
301 uval = (uint32_t)sval;
325 if ((uval & ~0xffff) == 0 || (uval & ~0xffff0000ull) == 0) {
329 ? mask_operand(uval, &mb, &me)
330 : mask64_operand(uval << clz64(uval), &mb, &me)) {
342 if ((ct & TCG_CT_CONST_U16) && uval == (uint16_t)uval) {
348 if ((ct & TCG_CT_CONST_U32) && uval == (uint32_t)uval) {
/qemu/disas/
H A Dm68k.c1102 unsigned int uval; in print_insn_arg() local
1125 uval = NEXTULONG (p); in print_insn_arg()
1126 (*info->print_address_func) (uval, info); in print_insn_arg()
1459 uval = NEXTULONG (p); in print_insn_arg()
1460 (*info->print_address_func) (uval, info); in print_insn_arg()