Lines Matching refs:out
1248 unsigned long long out = v1; in do_popcnt() local
1250 out -= (out >> 1) & 0x5555555555555555ULL; in do_popcnt()
1251 out = (0x3333333333333333ULL & out) + in do_popcnt()
1252 (0x3333333333333333ULL & (out >> 2)); in do_popcnt()
1253 out = (out + (out >> 4)) & 0x0f0f0f0f0f0f0f0fULL; in do_popcnt()
1256 op->val = out; in do_popcnt()
1259 out += out >> 8; in do_popcnt()
1260 out += out >> 16; in do_popcnt()
1262 op->val = out & 0x0000003f0000003fULL; in do_popcnt()
1266 out = (out + (out >> 32)) & 0x7f; in do_popcnt()
1267 op->val = out; /* popcntd */ in do_popcnt()