Lines Matching defs:index
115 unsigned int index;
119 index = sctx->count[0] % SHA512_BLOCK_SIZE;
125 part_len = SHA512_BLOCK_SIZE - index;
129 memcpy(&sctx->buf[index], data, part_len);
136 index = 0;
142 memcpy(&sctx->buf[index], &data[i], len - i);
179 unsigned int index;
188 index = sctx->count[0] & 0x7f;
189 pad_len = (index < 112) ? (112 - index) : ((128+112) - index);