Function orc_b

#[target_feature(enable = "zbb")]
pub fn orc_b(rs: usize) -> usize

Bitwise OR-Combine, byte granule

Combines the bits within every byte through a reciprocal bitwise logical OR. This sets the bits of each byte in the result rd to all zeros if no bit within the respective byte of rs is set, or to all ones if any bit within the respective byte of rs is set.

Source: RISC-V Bit-Manipulation ISA-extensions

Version: v1.0.0

Section: 2.24