Searched refs:shift (Results 1 – 3 of 3) sorted by relevance
277 unsigned int shift = 0; in buffer_append_uint_hex_lc() local283 shift += 8; /* counting bits */ in buffer_append_uint_hex_lc()287 buf = buffer_extend(b, shift >> 2); /*nibbles (4 bits)*/ in buffer_append_uint_hex_lc()289 while (shift > 0) { in buffer_append_uint_hex_lc()290 shift -= 4; in buffer_append_uint_hex_lc()291 *(buf++) = hex_chars_lc[(value >> shift) & 0x0F]; in buffer_append_uint_hex_lc()
3425 XXH_FORCE_INLINE xxh_u64 XXH_xorshift64(xxh_u64 v64, int shift) in XXH_xorshift64() argument3427 XXH_ASSERT(0 <= shift && shift < 64); in XXH_xorshift64()3428 return v64 ^ (v64 >> shift); in XXH_xorshift64()
2932 * fix undefined integer shift2946 * fix bad shift in conditional netmask ".../0" handling