Lines Matching defs:index
82 unsigned int index;
86 index = sctx->count[0] % SHA512_BLOCK_SIZE;
92 part_len = SHA512_BLOCK_SIZE - index;
96 memcpy(&sctx->buf[index], data, part_len);
103 index = 0;
109 memcpy(&sctx->buf[index], &data[i], len - i);
146 unsigned int index;
155 index = sctx->count[0] & 0x7f;
156 pad_len = (index < 112) ? (112 - index) : ((128+112) - index);