Do an 8-byte by 8-bit rotation.
Definition at line 112 of file bitswap.h.
112 {
113
114
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 for(int i = 0; i < 8; ++i) {
145 work.a3 = in.
word[0] >> 31;
146 work.a2 = in.
word[0] >> 23;
147 work.a1 = in.
word[0] >> 15;
148 work.a0 = in.
word[0] >> 7;
150 work.a7 = in.
word[1] >> 31;
151 work.a6 = in.
word[1] >> 23;
152 work.a5 = in.
word[1] >> 15;
153 work.a4 = in.
word[1] >> 7;
156 }
157}
uint32_t word[2]
two 32-bit values to load for swapping
uint8_t bytes[8]
eight 8-bit values to load for swapping
uint8_t raw
the entire byte
Structure representing 8 bits of access.
References bitswap_type::bytes, FASTLED_FORCE_INLINE, just8bits::raw, and bitswap_type::word.