Home | History | Annotate | Download | only in x64

Lines Matching refs:negative

1112   bool negative = value < 0;
1113 unsigned int uvalue = negative ? -value : value;
1150 if (negative) {
1938 // Check for negative zero result. If product is zero, and one
1939 // argument is negative, go to slow case.
1961 // Check for negative zero result. If product is zero, and one
1962 // argument is negative, go to slow case.
1967 // negative.
1970 j(negative, on_not_smi_result, near_jump);
1998 // We combine this with negative zero test (negative zero only happens
1999 // when dividing zero by a negative number).
2002 // by any negative value, not just -1.
2012 j(negative, on_not_smi_result, near_jump);
2083 // Check for a negative zero result. If the result is zero, and the
2084 // dividend is negative, go slow to return a floating point negative zero.
2089 j(negative, on_not_smi_result, near_jump);
2231 j(negative, on_not_smi_result, near_jump);
2414 // be negative.
3429 setcc(negative, reg); // 1 if negative, 0 if positive.
3430 decb(reg); // 0 if negative, 255 if positive.