Searched defs:shift_left (Results 1 - 2 of 2) sorted by relevance

/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvmuxer.cpp3017 int32 shift_left = 0; local
3052 ++shift_left;
3059 if (shift_left > 0) {
3060 if (shift_left >= frames_size_)
3063 const int32 new_frames_size = frames_size_ - shift_left;
3065 frames_[i] = frames_[i + shift_left];
/external/lldb/tools/debugserver/source/MacOSX/arm/
H A DDNBArchImpl.cpp593 uint32_t shift_left = sizeof(value) * 8 - 1 - msbit; local
594 value <<= shift_left; // shift anything above the msbit off of the unsigned edge local
595 value >>= (shift_left + lsbit); // shift it back again down to the lsbit (including undoing any shift from above)

Completed in 118 milliseconds