Searched refs:quotient_remainder (Results 1 – 2 of 2) sorted by relevance
9 struct quotient_remainder { uint32_t quotient, remainder; }; struct11 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()
9 struct quotient_remainder { int32_t quotient, remainder; }; struct11 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()