Searched refs:byteoff (Results 1 - 1 of 1) sorted by relevance

/freebsd-11-stable/crypto/openssl/crypto/whrlpool/
H A Dwp_dgst.c115 unsigned int byteoff = bitoff / 8; local
121 memcpy(c->data + byteoff, inp, bitrem);
126 memcpy(c->data + byteoff, inp, bits / 8);
149 unsigned int byteoff = bitoff / 8; local
154 c->data[byteoff++] |= inp[0] & (0xff >> inpgap);
173 c->data[byteoff++] |= b >> bitrem;
175 c->data[byteoff++] = b;
181 byteoff = 0;
185 c->data[byteoff] = b << (8 - bitrem);
190 c->data[byteoff
210 unsigned int bitoff = c->bitoff, byteoff = bitoff / 8; local
[all...]

Completed in 100 milliseconds