Lines Matching refs:bot
166 static inline block gen_offset(uint64_t KtopStr[3], unsigned bot) { in gen_offset() argument
169 __m128i lshift = _mm_cvtsi32_si128(bot); in gen_offset()
170 __m128i rshift = _mm_cvtsi32_si128(64 - bot); in gen_offset()
194 block gen_offset(uint64_t KtopStr[3], unsigned bot) { in gen_offset() argument
199 rval.u64[0] = (KtopStr[0] << bot) | (KtopStr[1] >> (64 - bot)); in gen_offset()
200 rval.u64[1] = (KtopStr[1] << bot) | (KtopStr[2] >> (64 - bot)); in gen_offset()
205 block gen_offset(uint64_t KtopStr[3], unsigned bot) { in gen_offset() argument
210 if (bot < 32) { in gen_offset()
216 bot = bot - 32; in gen_offset()
218 if (bot == 0) in gen_offset()
220 *(unsigned*)&bot_vec = bot; in gen_offset()
251 block gen_offset(uint64_t KtopStr[3], unsigned bot) { in gen_offset() argument
259 int64x2_t ls = vdupq_n_s64(bot); in gen_offset()
301 block gen_offset(uint64_t KtopStr[3], unsigned bot) { in gen_offset() argument
303 if (bot != 0) { in gen_offset()
304 rval.l = (KtopStr[0] << bot) | (KtopStr[1] >> (64 - bot)); in gen_offset()
305 rval.r = (KtopStr[1] << bot) | (KtopStr[2] >> (64 - bot)); in gen_offset()