Lines Matching defs:exp_x

43   int exp_x, exp_y;
165 exp_x = (x.w[1] >> 49) & 0x000000000003fffull;
207 if (exp_y == exp_x) {
217 && exp_x > exp_y) {
222 && exp_x < exp_y) {
227 diff = exp_x - exp_y;
229 // if |exp_x - exp_y| < 33, it comes down to the compensated significand
231 // if exp_x is 33 greater than exp_y, no need for compensation
259 diff = exp_y - exp_x;
260 // if exp_x is 33 less than exp_y, no need for compensation
307 int exp_x, exp_y;
429 exp_x = (x.w[1] >> 49) & 0x000000000003fffull;
452 if (exp_y == exp_x && sig_x.w[1] == sig_y.w[1]
463 && exp_x == exp_y)
467 && exp_x > exp_y)) {
474 && exp_y == exp_x)
478 && exp_y > exp_x)) {
484 diff = exp_x - exp_y;
485 // if |exp_x - exp_y| < 33, it comes down to the compensated significand
487 // if exp_x is 33 greater than exp_y, no need for compensation
523 diff = exp_y - exp_x;
524 // if exp_x is 33 less than exp_y, no need for compensation
579 int exp_x, exp_y;
700 exp_x = (x.w[1] >> 49) & 0x000000000003fffull;
742 if (exp_y == exp_x) {
752 && exp_x >= exp_y) {
758 && exp_x <= exp_y) {
762 diff = exp_x - exp_y;
763 // if |exp_x - exp_y| < 33, it comes down to the compensated significand
765 // if exp_x is 33 greater than exp_y, no need for compensation
793 diff = exp_y - exp_x;
794 // if exp_x is 33 less than exp_y, no need for compensation
842 int exp_x, exp_y;
964 exp_x = (x.w[1] >> 49) & 0x000000000003fffull;
986 if (exp_y == exp_x && sig_x.w[1] == sig_y.w[1]
998 && exp_x == exp_y)
1002 && exp_x > exp_y)) {
1009 && exp_y == exp_x)
1013 && exp_y > exp_x)) {
1019 diff = exp_x - exp_y;
1020 // if |exp_x - exp_y| < 33, it comes down to the compensated significand
1022 // if exp_x is 33 greater than exp_y, no need for compensation
1057 diff = exp_y - exp_x;
1058 // if exp_x is 33 less than exp_y, no need for compensation