Home
last modified time | relevance | path

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

/xnu-12377.1.9/bsd/net/
H A Dsiphash.c225 #define SIP_ROTL(x, b) (uint64_t)(((x) << (b)) | ( (x) >> (64 - (b)))) macro
241 ctx->v[1] = SIP_ROTL(ctx->v[1], 13); in SipRounds()
242 ctx->v[3] = SIP_ROTL(ctx->v[3], 16); in SipRounds()
246 ctx->v[0] = SIP_ROTL(ctx->v[0], 32); in SipRounds()
250 ctx->v[1] = SIP_ROTL(ctx->v[1], 17); in SipRounds()
251 ctx->v[3] = SIP_ROTL(ctx->v[3], 21); in SipRounds()
255 ctx->v[2] = SIP_ROTL(ctx->v[2], 32); in SipRounds()