Home
last modified time | relevance | path

Searched refs:temp0 (Results 1 – 1 of 1) sorted by relevance

/rk3399_ARM-atf/drivers/arm/sfcp/sfcp_core/
H A Dsfcp_random.c31 uint64_t temp0, temp1; in xorshift_plus_128_lfsr() local
35 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()