Searched refs:result_low (Results 1 - 3 of 3) sorted by relevance

/freebsd-9.3-release/contrib/ntp/libparse/
H A Dmfp_mul.c102 u_long result_low, result_high; local
110 result_low = (u_long)a[i] * (u_long)b[j]; /* partial product */
114 result_high = result_low >> (FRACTION_PREC/2);
115 result_low <<= FRACTION_PREC/2;
124 if (((c[low_index] >> 1) + (result_low >> 1) + ((c[low_index] & result_low & carry) != 0)) &
129 c[low_index] += result_low; /* add up partial products */
/freebsd-9.3-release/contrib/gcc/
H A Dtree-vect-generic.c151 tree low_bits, high_bits, a_low, b_low, result_low, signs; local
171 result_low = gimplify_build2 (bsi, code, word_type, a_low, b_low);
172 return gimplify_build2 (bsi, BIT_XOR_EXPR, word_type, result_low, signs);
183 tree low_bits, high_bits, b_low, result_low, signs; local
194 result_low = gimplify_build2 (bsi, MINUS_EXPR, word_type, high_bits, b_low);
195 return gimplify_build2 (bsi, BIT_XOR_EXPR, word_type, result_low, signs);
H A Drtlanal.c3657 int result_low = 0;
3663 result_low = MIN (low0, low1);
3666 result_low = MIN (low0, low1);
3670 result_low = low0 + low1;
3688 result_low = MIN (low0, low1);
3694 result_low = MIN (low0, low1);
3703 if (result_low > 0)
3704 nonzero &= ~(((HOST_WIDE_INT) 1 << result_low) - 1);
3632 int result_low = 0; local

Completed in 117 milliseconds