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

/freebsd-10.1-release/crypto/openssl/crypto/des/
H A Dofb_enc.c71 register DES_LONG d0, d1, vv0, vv1, v0, v1, n = (numbits + 7) / 8; local
103 vv0 = ti[0];
107 d0 = (d0 ^ vv0) & mask0;
114 v1 = vv0;
116 v0 = vv0;
119 v0 = ((v1 >> (num - 32)) | (vv0 << (64 - num))) & 0xffffffffL;
120 v1 = ((vv0 >> (num - 32)) | (vv1 << (64 - num))) & 0xffffffffL;
124 v1 = ((v1 >> num) | (vv0 << (32 - num))) & 0xffffffffL;
130 v0 = v1 = d0 = d1 = ti[0] = ti[1] = vv0 = vv1 = 0;

Completed in 46 milliseconds