Recognizer for elf32_sym bit structures.
(elf32_sym-p x) → *
Function:
(defun elf32_sym-p (x) (declare (xargs :guard t)) (let ((__function__ 'elf32_sym-p)) (declare (ignorable __function__)) (mbe :logic (unsigned-byte-p 128 x) :exec (and (natp x) (< x 340282366920938463463374607431768211456)))))
Theorem:
(defthm elf32_sym-p-when-unsigned-byte-p (implies (unsigned-byte-p 128 x) (elf32_sym-p x)))
Theorem:
(defthm unsigned-byte-p-when-elf32_sym-p (implies (elf32_sym-p x) (unsigned-byte-p 128 x)))
Theorem:
(defthm elf32_sym-p-compound-recognizer (implies (elf32_sym-p x) (natp x)) :rule-classes :compound-recognizer)