Contents Menu Expand Light mode Dark mode Auto light/dark, in light mode Auto light/dark, in dark mode Skip to content
🚀 Try FlipJump in your browser: fj.tomhe.app
FlipJump
FlipJump
  • Getting Started
    • Installation
    • Hello, World!
    • Anatomy of a FlipJump program
  • Language Reference
    • The FlipJump Instruction
    • Lexical Structure
    • Expressions
    • Macros
    • Namespaces
    • Directives
    • Types and built-in names
    • Input / Output
    • Complexity notation
  • Standard Library
    • runlib.fj
    • casting.fj
    • ptrlib.fj
    • bit/memory.fj
    • bit/logics.fj
    • bit/cond_jumps.fj
    • bit/shifts.fj
    • bit/math.fj
    • bit/input.fj
    • bit/output.fj
    • bit/casting.fj
    • bit/pointers.fj
    • bit/mul.fj
    • bit/div.fj
    • hex/memory.fj
    • hex/logics.fj
    • hex/math.fj
    • hex/math_basic.fj
    • hex/shifts.fj
    • hex/cond_jumps.fj
    • hex/tables_init.fj
    • hex/input.fj
    • hex/output.fj
    • hex/mul.fj
    • hex/div.fj
    • hex/pointers/basic_pointers.fj
    • hex/pointers/xor_to_pointer.fj
    • hex/pointers/xor_from_pointer.fj
    • hex/pointers/read_pointers.fj
    • hex/pointers/write_pointers.fj
    • hex/pointers/stack.fj
    • hex/pointers/pointer_arithmetics.fj
  • Examples
    • Hello World
    • Prime Sieve
    • Calculator
    • Quine
  • Companion tools and resources
    • FlipJump IDE — fj.tomhe.app
    • c2fj — C to FlipJump
    • bf2fj — Brainfuck to FlipJump
Back to top
View this page
Edit this page

bit.pointers.set_flip_pointer¶

Sets both to_flip and to_flip_var to point to the given pointer.
(  to_flip{_var} = ptr  )
ptr is a bit[:w] that holds an address.

Signature¶

def set_flip_pointer ptr < .to_flip, .to_flip_var { ... }

Defined in bit/pointers.fj — lines 39–42 (view on GitHub).

Complexity¶

  • Time: 2w@

  • Space: 2w@

See the complexity glossary for what @, w, dw, dbit, n mean.

Depends on¶

  • bit.address_and_variable_xor

Used by¶

  • bit.ptr_flip

  • bit.ptr_wflip

Copyright © 2026, Tom Herman
Made with Sphinx and @pradyunsg's Furo
On this page
  • bit.pointers.set_flip_pointer
    • Signature
    • Complexity
    • Depends on
    • Used by