Lines Matching refs:crounds
108 /* hash_size = crounds = drounds = 0 means SipHash24 with 16-byte output */
109 int SipHash_Init(SIPHASH *ctx, const unsigned char *k, int crounds, int drounds)
119 if (crounds == 0)
120 crounds = SIPHASH_C_ROUNDS;
122 ctx->crounds = crounds;
171 for (i = 0; i < ctx->crounds; ++i)
181 for (i = 0; i < ctx->crounds; ++i)
207 if (ctx->crounds == 0 || outlen == 0 || outlen != (size_t)ctx->hash_size)
236 for (i = 0; i < ctx->crounds; ++i)