Searched refs:temp0 (Results 1 – 1 of 1) sorted by relevance
31 uint64_t temp0, temp1; in xorshift_plus_128_lfsr() local35 temp0 = lfsr->state[0]; in xorshift_plus_128_lfsr()39 temp0 ^= temp0 << 23; in xorshift_plus_128_lfsr()40 temp0 ^= temp0 >> 18; in xorshift_plus_128_lfsr()41 temp0 ^= temp1 ^ (temp1 >> 5); in xorshift_plus_128_lfsr()43 lfsr->state[1] = temp0; in xorshift_plus_128_lfsr()45 return temp0 + temp1; in xorshift_plus_128_lfsr()