Lines Matching refs:hash
1076 } hash; in extract_buf() local
1084 sha_init(hash.w); in extract_buf()
1089 hash.l[i] = v; in extract_buf()
1095 sha_transform(hash.w, (__u8 *)(r->pool + i), workspace); in extract_buf()
1106 __mix_pool_bytes(r, hash.w, sizeof(hash.w)); in extract_buf()
1116 hash.w[0] ^= hash.w[3]; in extract_buf()
1117 hash.w[1] ^= hash.w[4]; in extract_buf()
1118 hash.w[2] ^= rol32(hash.w[2], 16); in extract_buf()
1120 memcpy(out, &hash, EXTRACT_SIZE); in extract_buf()
1121 memzero_explicit(&hash, sizeof(hash)); in extract_buf()
1726 __u32 *hash; in get_random_int() local
1732 hash = get_cpu_var(get_random_int_hash); in get_random_int()
1734 hash[0] += current->pid + jiffies + random_get_entropy(); in get_random_int()
1735 md5_transform(hash, random_int_secret); in get_random_int()
1736 ret = hash[0]; in get_random_int()