fn byte_aligned_bitwise_unary_op_helper<F>(
buffer: &mut [u8],
offset_in_bits: usize,
len_in_bits: usize,
op: F,
)Expand description
Perform bitwise unary operation on byte-aligned buffer.
This is the optimized path for byte-aligned unary operations. It processes data in u64 chunks for maximum efficiency, then handles any remainder bits.
ยงArguments
buffer- The mutable buffer (must be byte-aligned)offset_in_bits- Starting bit offset (must be multiple of 8)len_in_bits- Number of bits to processop- Unary operation to apply (e.g.,|a| !a)