Micro optimize: C standard guarantees that right shift for unsigned value
fills left bits with zero, and we have exact 32bit unsigned value
(uint32_t), so there is no reason to add "& 0x7fffffff" here.
MFC after: 1 week
Micro optimize: C standard guarantees that right shift for unsigned value Tags None Referenced Files None Subscribers None
Description
Details
|