Searched refs:a_i64 (Results 1 – 1 of 1) sorted by relevance
7802 int64_t a_i64 = *( int64_t*)&a; variable7806 int64_t maskb = a_i64 & (( int64_t)1 << (b - 1));7807 res.m64_i64[0] = (a_i64 >> b) + (maskb >> (b - 1));8248 int64_t a_i64 = *( int64_t*)&a; variable8250 if (a_i64 >= bmask) {8253 res.m64_i64[0] = (a_i64 <= -bmask) ? _SIGNBIT64 : a_i64 << b;8296 uint64_t a_i64 = *(uint64_t*)&a; variable8298 …res.m64_u64[0] = (a_i64 >= bmask)&&(b>0) ? 0xffffffffffffffff : a_i64 << b; //if b=0 we are fine w…