Home
last modified time | relevance | path

Searched refs:quotient_remainder (Results 1 – 2 of 2) sorted by relevance

/openbmc/qemu/tests/tcg/mips/user/isa/r5900/
H A Dtest_r5900_divu1.c9 struct quotient_remainder { uint32_t quotient, remainder; }; argument
11 static struct quotient_remainder divu1(uint32_t rs, uint32_t rt) in divu1()
25 return (struct quotient_remainder) { .quotient = lo, .remainder = hi }; in divu1()
32 struct quotient_remainder qr = divu1(rs, rt); in verify_divu1()
H A Dtest_r5900_div1.c9 struct quotient_remainder { int32_t quotient, remainder; }; argument
11 static struct quotient_remainder div1(int32_t rs, int32_t rt) in div1()
25 return (struct quotient_remainder) { .quotient = lo, .remainder = hi }; in div1()
32 struct quotient_remainder qr = div1(rs, rt); in verify_div1()