bit.ptr_inc¶
ptr += 2w — advance a w-wide bit-pointer by one dw-aligned word.
Signature¶
def ptr_inc ptr { ... }
Defined in bit/pointers.fj — lines 180–182 (view on GitHub).
Complexity¶
Time:
5@+12Space:
w(2@+6)
See the complexity glossary for what @, w, dw, dbit, n mean.
Source¶
Click to view the macro body
def ptr_inc ptr {
.inc w-#w, ptr+(#w)*dw
}
Depends on¶
← Previous: bit.exact_xor_from_ptr
Next: bit.ptr_dec →