Lines Matching refs:hash
176 ext2fs_half_md4(uint32_t hash[4], uint32_t data[8])
178 uint32_t a = hash[0], b = hash[1], c = hash[2], d = hash[3];
210 hash[0] += a;
211 hash[1] += b;
212 hash[2] += c;
213 hash[3] += d;
220 ext2fs_tea(uint32_t hash[4], uint32_t data[8])
224 uint32_t x = hash[0], y = hash[1];
235 hash[0] += x;
236 hash[1] += y;
244 uint32_t hash[4];
255 hash[0] = 0x67452301;
256 hash[1] = 0xEFCDAB89;
257 hash[2] = 0x98BADCFE;
258 hash[3] = 0x10325476;
261 memcpy(hash, hash_seed, sizeof(hash));
270 ext2fs_tea(hash, data);
274 major = hash[0];
275 minor = hash[1];
289 ext2fs_half_md4(hash, data);
293 major = hash[1];
294 minor = hash[2];