Home | History | Annotate | Download | only in include

Lines Matching full:__shift

3220   static _Size __rotate(_Size __val, int __shift) {
3221 return __shift == 0 ? __val : ((__val >> __shift) | (__val << (64 - __shift)));
3224 static _Size __rotate_by_at_least_1(_Size __val, int __shift) {
3225 return (__val >> __shift) | (__val << (64 - __shift));