Lines Matching refs:shift
122 JEMALLOC_INLINE_C void rshift128(w128_t *out, w128_t const *in, int shift);
123 JEMALLOC_INLINE_C void lshift128(w128_t *out, w128_t const *in, int shift);
163 JEMALLOC_INLINE_C void rshift128(w128_t *out, w128_t const *in, int shift) { in rshift128() argument
169 oh = th >> (shift * 8); in rshift128()
170 ol = tl >> (shift * 8); in rshift128()
171 ol |= th << (64 - shift * 8); in rshift128()
178 JEMALLOC_INLINE_C void rshift128(w128_t *out, w128_t const *in, int shift) { in rshift128() argument
184 oh = th >> (shift * 8); in rshift128()
185 ol = tl >> (shift * 8); in rshift128()
186 ol |= th << (64 - shift * 8); in rshift128()
202 JEMALLOC_INLINE_C void lshift128(w128_t *out, w128_t const *in, int shift) { in lshift128() argument
208 oh = th << (shift * 8); in lshift128()
209 ol = tl << (shift * 8); in lshift128()
210 oh |= tl >> (64 - shift * 8); in lshift128()
217 JEMALLOC_INLINE_C void lshift128(w128_t *out, w128_t const *in, int shift) { in lshift128() argument
223 oh = th << (shift * 8); in lshift128()
224 ol = tl << (shift * 8); in lshift128()
225 oh |= tl >> (64 - shift * 8); in lshift128()