Lines Matching refs:leavings
153 /* deal with leavings */
156 /* not enough to fill leavings */
158 memcpy(&ctx->leavings[ctx->len], in, inlen);
163 /* copy data into leavings and reduce input */
164 memcpy(&ctx->leavings[ctx->len], in, available);
168 /* process leavings */
169 m = U8TO64_LE(ctx->leavings);
175 left = inlen & (SIPHASH_BLOCK_SIZE-1); /* gets put into leavings */
186 /* save leavings and other ctx */
188 memcpy(ctx->leavings, end, left);
212 b |= ((uint64_t)ctx->leavings[6]) << 48;
215 b |= ((uint64_t)ctx->leavings[5]) << 40;
218 b |= ((uint64_t)ctx->leavings[4]) << 32;
221 b |= ((uint64_t)ctx->leavings[3]) << 24;
224 b |= ((uint64_t)ctx->leavings[2]) << 16;
227 b |= ((uint64_t)ctx->leavings[1]) << 8;
230 b |= ((uint64_t)ctx->leavings[0]);