Lines Matching refs:tmp
142 u_int left, right, tmp; in permute15() local
157 tmp = ru_prf->prf8[(i << (8 - 1)) | right] & 0x7f; in permute15()
159 tmp = ru_prf->prf7[((i - 1) << (7 - 1)) | right]; in permute15()
160 tmp ^= left; in permute15()
162 right = tmp; in permute15()
180 u_int32_t tmp; in res_initid() local
187 tmp = arc4random(); in res_initid()
188 ru_seed = (tmp >> 16) & 0x7FFF; in res_initid()
189 ru_seed2 = tmp & 0x7FFF; in res_initid()
192 tmp = arc4random(); in res_initid()
193 ru_b = (tmp & 0xfffe) | 1; in res_initid()
194 ru_a = pmod(RU_AGEN, (tmp >> 16) & 0xfffe, RU_M); in res_initid()