Lines Matching full:src_value
732 // To simplify generation of interesting "sub-states" of src_value, allow a "simple" mask to apply
733 // to a src_value, such that mask bit 0 applies to the lowest set bit in src_value, and so on.
734 static uint32_t ApplyMaskShifted(uint32_t src_value, uint32_t mask) {
737 while (src_value != 0) {
738 uint32_t index = CTZ(src_value);
739 if (((src_value & (1 << index)) != 0) &&
743 src_value &= ~(1 << index);