Do an 8-byte by 8-bit rotation.
Definition at line 115 of file bitswap.h.
115 {
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146 for(int i = 0; i < 8; ++i) {
148 work.a3 = in.
word[0] >> 31;
149 work.a2 = in.
word[0] >> 23;
150 work.a1 = in.
word[0] >> 15;
151 work.a0 = in.
word[0] >> 7;
153 work.a7 = in.
word[1] >> 31;
154 work.a6 = in.
word[1] >> 23;
155 work.a5 = in.
word[1] >> 15;
156 work.a4 = in.
word[1] >> 7;
159 }
160}
fl::u8 bytes[8]
eight 8-bit values to load for swapping
fl::u8 raw
the entire byte
fl::u32 word[2]
two 32-bit values to load for swapping
Structure representing 8 bits of access.
References bitswap_type::bytes, FASTLED_FORCE_INLINE, just8bits::raw, and bitswap_type::word.