Searched refs:ROUND2 (Results 1 - 3 of 3) sorted by relevance

/macosx-10.10.1/rsync-45/rsync/lib/
H A Dmdfour.c40 #define ROUND2(a,b,c,d,k,s) a = lshift((a + G(b,c,d) + M[k] + 0x5A827999)&MASK32,s) macro
62 ROUND2(A,B,C,D, 0, 3); ROUND2(D,A,B,C, 4, 5);
63 ROUND2(C,D,A,B, 8, 9); ROUND2(B,C,D,A, 12, 13);
64 ROUND2(A,B,C,D, 1, 3); ROUND2(D,A,B,C, 5, 5);
65 ROUND2(C,D,A,B, 9, 9); ROUND2(B,C,D,A, 13, 13);
66 ROUND2(
[all...]
/macosx-10.10.1/network_cmds-457/ping6.tproj/
H A Dmd5.c52 #define ROUND2(a, b, c, d, k, s, i) { \ macro
277 ROUND2(A, B, C, D, 1, Se, 17); ROUND2(D, A, B, C, 6, Sf, 18);
278 ROUND2(C, D, A, B, 11, Sg, 19); ROUND2(B, C, D, A, 0, Sh, 20);
279 ROUND2(A, B, C, D, 5, Se, 21); ROUND2(D, A, B, C, 10, Sf, 22);
280 ROUND2(C, D, A, B, 15, Sg, 23); ROUND2(B, C, D, A, 4, Sh, 24);
281 ROUND2(
[all...]
/macosx-10.10.1/ksh-23/ksh/src/lib/libast/vmalloc/
H A Dvmhdr.h115 /* Round x up to a multiple of y. ROUND2 does powers-of-2 and ROUNDX does others */
116 #define ROUND2(x,y) (((x) + ((y)-1)) & ~((y)-1)) macro
118 #define ROUND(x,y) (((y)&((y)-1)) ? ROUNDX((x),(y)) : ROUND2((x),(y)) )

Completed in 234 milliseconds