Home | History | Annotate | Download | only in src

Lines Matching refs:y_value

7486   CONVERT_SMI_ARG_CHECKED(y_value, 1);
7489 if (x_value == y_value) return Smi::FromInt(EQUAL);
7493 if (x_value == 0 || y_value == 0)
7494 return Smi::FromInt(x_value < y_value ? LESS : GREATER);
7503 uint32_t y_scaled = y_value;
7504 if (x_value < 0 || y_value < 0) {
7505 if (y_value >= 0) return Smi::FromInt(LESS);
7508 y_scaled = -y_value;