Convert from type
Function:
(defun sllong-from-uint (x) (declare (xargs :guard (uintp x))) (declare (xargs :guard (sllong-from-uint-okp x))) (let ((__function__ 'sllong-from-uint)) (declare (ignorable __function__)) (sllong-from-integer (integer-from-uint x))))
Theorem:
(defthm sllongp-of-sllong-from-uint (b* ((result (sllong-from-uint x))) (sllongp result)) :rule-classes :rewrite)
Theorem:
(defthm sllong-from-uint-of-uint-fix-x (equal (sllong-from-uint (uint-fix x)) (sllong-from-uint x)))
Theorem:
(defthm sllong-from-uint-uint-equiv-congruence-on-x (implies (uint-equiv x x-equiv) (equal (sllong-from-uint x) (sllong-from-uint x-equiv))) :rule-classes :congruence)