Searched refs:nextSquare (Results 1 – 4 of 4) sorted by relevance
1364 APInt nextSquare((x_old + 1) * (x_old +1)); in sqrt() local1367 assert(this->ule(nextSquare) && "Error in APInt::sqrt computation"); in sqrt()1368 APInt midpoint((nextSquare - square).udiv(two)); in sqrt()
1089 APInt nextSquare((x_old + 1) * (x_old +1)); in sqrt() local1092 assert(this->ule(nextSquare) && "Error in APInt::sqrt computation"); in sqrt()1093 APInt midpoint((nextSquare - square).udiv(two)); in sqrt()
1431 APInt nextSquare((x_old + 1) * (x_old +1)); in sqrt() local1434 else if (this->ule(nextSquare)) { in sqrt()1435 APInt midpoint((nextSquare - square).udiv(two)); in sqrt()
1338 APInt nextSquare((x_old + 1) * (x_old +1)); in sqrt() local1341 assert(this->ule(nextSquare) && "Error in APInt::sqrt computation"); in sqrt()1342 APInt midpoint((nextSquare - square).udiv(two)); in sqrt()