Searched refs:SIP_ROTL (Results 1 - 2 of 2) sorted by relevance

/freebsd-13-stable/sys/crypto/siphash/
H A Dsiphash.c210 #define SIP_ROTL(x, b) (uint64_t)(((x) << (b)) | ( (x) >> (64 - (b)))) macro
225 ctx->v[1] = SIP_ROTL(ctx->v[1], 13);
226 ctx->v[3] = SIP_ROTL(ctx->v[3], 16);
230 ctx->v[0] = SIP_ROTL(ctx->v[0], 32);
234 ctx->v[1] = SIP_ROTL(ctx->v[1], 17);
235 ctx->v[3] = SIP_ROTL(ctx->v[3], 21);
239 ctx->v[2] = SIP_ROTL(ctx->v[2], 32);
/freebsd-13-stable/contrib/expat/lib/
H A Dsiphash.h116 #define SIP_ROTL(x, b) (uint64_t)(((x) << (b)) | ((x) >> (64 - (b)))) macro
177 H->v1 = SIP_ROTL(H->v1, 13);
179 H->v0 = SIP_ROTL(H->v0, 32);
182 H->v3 = SIP_ROTL(H->v3, 16);
186 H->v3 = SIP_ROTL(H->v3, 21);
190 H->v1 = SIP_ROTL(H->v1, 17);
192 H->v2 = SIP_ROTL(H->v2, 32);

Completed in 54 milliseconds