Lines Matching defs:shift
182 uintptr_t shift = 0;
188 result |= static_cast<uintptr_t>(byte & 0x7F) << shift;
189 shift += 7;
205 uintptr_t shift = 0;
211 result |= static_cast<uintptr_t>(byte & 0x7F) << shift;
212 shift += 7;
215 if ((byte & 0x40) && (shift < (sizeof(result) << 3)))
216 result |= static_cast<uintptr_t>(~0) << shift;