Home | History | Annotate | Download | only in src

Lines Matching defs:shift

505         uint32_t shift = DoubleToInt32(y_val) & 0x1f;
506 uint32_t value = DoubleToUint32(x_val) >> shift;
511 uint32_t shift = DoubleToInt32(y_val) & 0x1f;
512 int value = ArithmeticShiftRight(DoubleToInt32(x_val), shift);