• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
    • Software-verification
      • Kestrel-books
        • Crypto-hdwallet
        • Apt
        • Error-checking
        • Fty-extensions
        • Isar
        • Kestrel-utilities
        • Set
        • Soft
        • C
          • Syntax-for-tools
          • Atc
          • Language
          • Representation
            • Representation-of-integer-operations
            • Atc-arrays
            • Representation-of-integers
            • Representation-of-integer-conversions
            • Pointed-integers
              • Def-pointed-integer-operations
              • Def-pointed-integer-operations-loop
              • Ushort-write
              • Ullong-write
              • Sshort-write
              • Sllong-write
              • Ulong-write
              • Uint-write
              • Uchar-write
              • Slong-write
              • Sint-write
              • Schar-write
              • Ushort-read
              • Ullong-read
              • Sshort-read
              • Sllong-read
              • Ulong-read
              • Uint-read
                • Uchar-read
                • Slong-read
                • Sint-read
                • Schar-read
              • Shallow-deep-embedding-relation
            • Transformation-tools
            • Insertion-sort
            • Pack
          • Bv
          • Imp-language
          • Event-macros
          • Java
          • Bitcoin
          • Ethereum
          • Yul
          • Zcash
          • ACL2-programming-language
          • Prime-fields
          • Json
          • Syntheto
          • File-io-light
          • Cryptography
          • Number-theory
          • Lists-light
          • Axe
          • Builtins
          • Solidity
          • Helpers
          • Htclient
          • Typed-lists-light
          • Arithmetic-light
        • X86isa
        • Axe
        • Execloader
      • Math
      • Testing-utilities
    • Pointed-integers

    Uint-read

    Representation of a read of a pointed type unsigned int.

    Signature
    (uint-read x) → x
    Arguments
    x — Guard (star (uintp x)).
    Returns
    x — Type (uintp x).

    Definitions and Theorems

    Function: uint-read

    (defun uint-read (x)
      (declare (xargs :guard (star (uintp x))))
      (let ((__function__ 'uint-read))
        (declare (ignorable __function__))
        (uint-fix x)))

    Theorem: uintp-of-uint-read

    (defthm uintp-of-uint-read
      (b* ((x (uint-read x))) (uintp x))
      :rule-classes :rewrite)