hex.write_byte (arity 3)ΒΆ
Effectively: *ptr[:n] = src[:2n]
src is a hex[:2n]. ptr is a hex[:w/4] that holds an address, which we assume is dw-aligned.
SignatureΒΆ
def write_byte n, ptr, src { ... }
Defined in hex/pointers/write_pointers.fj β lines 77β80 (view on GitHub).
ComplexityΒΆ
Time:
n(w(0.75@+5) + 26@+51)Space:
n(w(1.13@+32) + 22@+255)
See the complexity glossary for what @, w, dw, dbit, n mean.
SourceΒΆ
Click to view the macro body
def write_byte n, ptr, src {
rep(n, i) .write_byte_and_inc ptr, src + i*2*dw
.ptr_sub ptr, n
}
Depends onΒΆ
β Previous: hex.write_byte_and_inc
Next: hex.write_nth_hex β