Home
last modified time | relevance | path

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

/qemu/util/
H A Dint128.c49 tmp = divu128(&lo, &hi, v.lo); in divrem128()
58 divu128(&lo, &tmp, hi); in divrem128()
63 divu128(&lo, &tmp, hi); in divrem128()
H A Dhost-utils.c95 uint64_t divu128(uint64_t *plow, uint64_t *phigh, uint64_t divisor) in divu128() function
182 rem = divu128(&unsig_lo, &unsig_hi, (uint64_t)divisor); in divs128()
/qemu/tests/unit/
H A Dtest-div128.c168 rem = divu128(&tmp.low, &tmp.high, tmp.divisor); in test_divu128()
/qemu/include/hw/
H A Dclock.h327 divu128(&lo, &hi, clk->period); in clock_ns_to_ticks()
/qemu/target/s390x/tcg/
H A Dint_helper.c93 uint64_t r = divu128(&al, &ah, b); in HELPER()
/qemu/include/qemu/
H A Dhost-utils.h64 static inline uint64_t divu128(uint64_t *plow, uint64_t *phigh, in divu128() function
88 uint64_t divu128(uint64_t *plow, uint64_t *phigh, uint64_t divisor);
/qemu/target/ppc/
H A Dint_helper.c113 divu128(&rt, &ra, rb); in helper_DIVDEU()
1179 divu128(&low, &high, b->u64[i]); in helper_VDIVEUD()
2627 rem = divu128(&lo_value, &hi_value, 1000000000000000ULL); in helper_bcdcfsq()
/qemu/libdecnumber/
H A DdecNumber.c495 rem = divu128(&lo, &hi, DECDPUNMAX + 1); in decNumberFromUInt128()