Home | History | Annotate | Download | only in Support

Lines Matching defs:shift

121     unsigned shift;
125 shift = 28;
131 result |= (static_cast<uint64_t>(byte & 0x7f) << shift);
132 shift += 7;
169 unsigned shift;
172 shift = 28;
175 result |= (static_cast<uint64_t>(byte & 0x7f) << shift);
176 shift += 7;
191 unsigned shift = 0;
198 result |= (static_cast<uint64_t>(byte & 0x7f) << shift);
199 shift += 7;
202 if ((shift < (8 * sizeof(result))) && (byte & 0x40))
203 result |= ((static_cast<uint64_t>(-1)) << shift);
212 unsigned shift = 0;
217 result |= (static_cast<uint64_t>(byte & 0x7f) << shift);
218 shift += 7;
221 if ((shift < (8 * sizeof(result))) && (byte & 0x40))
222 result |= ((static_cast<uint64_t>(-1)) << shift);