(rotate-right-33 x places) → *
Function:
(defun rotate-right-33$inline (x places) (declare (type (unsigned-byte 33) x) (type (unsigned-byte 33) places)) (let ((__function__ 'rotate-right-33)) (declare (ignorable __function__)) (mbe :logic (rotate-right x 33 places) :exec (let* ((x (mbe :logic (loghead 33 x) :exec x)) (places (mbe :logic (lnfix places) :exec places)) (places (if (< places 33) (the (integer 0 32) places) (the (integer 0 32) (rem places 33)))) (mask (the (unsigned-byte 33) (1- (the (unsigned-byte 33) (ash 1 places))))) (xl (the (unsigned-byte 33) (logand x mask))) (xh-shift (the (unsigned-byte 33) (ash x (the (integer -33 0) (- places))))) (high-num (the (integer 0 33) (- 33 places))) (xl-shift (the (unsigned-byte 33) (ash xl high-num))) (ans (the (unsigned-byte 33) (logior xl-shift xh-shift)))) ans))))