Lines Matching refs:just
60 just (isaac_word a) in just() function
113 r[i] = b = just (ind (s->m, y >> ISAAC_WORDS_LOG) + x); \ in isaac_refill()
119 ISAAC_STEP (1, HALF, IF32 (just (a) >> 6, a ^ (just (a) >> 5))); in isaac_refill()
121 ISAAC_STEP (3, HALF, IF32 (just (a) >> 16, a ^ (just (a) >> 33))); in isaac_refill()
129 ISAAC_STEP (1, -HALF, IF32 (just (a) >> 6, a ^ (just (a) >> 5))); in isaac_refill()
131 ISAAC_STEP (3, -HALF, IF32 (just (a) >> 16, a ^ (just (a) >> 33))); in isaac_refill()
148 b += c; b ^= just (c) >> 2; e += b; \
150 d += e; d ^= just (e) >> 16; g += d; \
152 f += g; f ^= just (g) >> 4; a += f; \
154 h += a; h ^= just (a) >> 9; c += h; \
160 a -= e; f ^= just (h) >> 9; h += a; \
162 c -= g; h ^= just (b) >> 23; b += c; \
164 e -= a; b ^= just (d) >> 14; d += e; \
166 g -= c; d ^= just (f) >> 17; f += g; \