Lines Matching refs:y_value
7139 CONVERT_SMI_ARG_CHECKED(y_value, 1);
7142 if (x_value == y_value) return Smi::FromInt(EQUAL);
7146 if (x_value == 0 || y_value == 0)
7147 return Smi::FromInt(x_value < y_value ? LESS : GREATER);
7156 uint32_t y_scaled = y_value;
7157 if (x_value < 0 || y_value < 0) {
7158 if (y_value >= 0) return Smi::FromInt(LESS);
7161 y_scaled = -y_value;