Home
last modified time | relevance | path

Searched refs:mtpz_hash_rotate_left (Results 1 – 1 of 1) sorted by relevance

/external/libmtp/src/
Dmtpz.c220 static unsigned int mtpz_hash_rotate_left(unsigned int x, int n);
500 …for (i = 16; i < 80; i++) W[i] = mtpz_hash_rotate_left(W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16]… in mtpz_hash_compute_hash()
513 T = (mtpz_hash_rotate_left(a, 5) + mtpz_hash_f(s, b, c, d) + e + K[s] + W[i]) & 0xFFFFFFFF; in mtpz_hash_compute_hash()
516 c = mtpz_hash_rotate_left(b, 30); in mtpz_hash_compute_hash()
545 unsigned int mtpz_hash_rotate_left(unsigned int x, int n) in mtpz_hash_rotate_left() function