Lines Matching refs:hash
1096 } hash; in extract_buf() local
1104 sha_init(hash.w); in extract_buf()
1109 hash.l[i] = v; in extract_buf()
1115 sha_transform(hash.w, (__u8 *)(r->pool + i), workspace); in extract_buf()
1126 __mix_pool_bytes(r, hash.w, sizeof(hash.w)); in extract_buf()
1136 hash.w[0] ^= hash.w[3]; in extract_buf()
1137 hash.w[1] ^= hash.w[4]; in extract_buf()
1138 hash.w[2] ^= rol32(hash.w[2], 16); in extract_buf()
1140 memcpy(out, &hash, EXTRACT_SIZE); in extract_buf()
1141 memzero_explicit(&hash, sizeof(hash)); in extract_buf()
1804 __u32 *hash; in get_random_int() local
1810 hash = get_cpu_var(get_random_int_hash); in get_random_int()
1812 hash[0] += current->pid + jiffies + random_get_entropy(); in get_random_int()
1813 md5_transform(hash, random_int_secret); in get_random_int()
1814 ret = hash[0]; in get_random_int()