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

/freebsd-10.0-release/crypto/openssl/crypto/des/
H A Dcfb_enc.c81 unsigned char ovec[16]; local
84 unsigned char *ovec=(unsigned char *)sh; local
119 iv=&ovec[0];
128 memmove(ovec,ovec+num,8);
131 ovec[i]=ovec[i+num]<<rem |
132 ovec[i+num+1]>>(8-rem);
136 iv=&ovec[0];
162 iv=&ovec[
[all...]
H A Dcfb64ede.c159 unsigned char ovec[16]; local
187 iv=&ovec[0];
192 /* shift ovec left most of the bits... */
193 memmove(ovec,ovec+num/8,8+(num%8 ? 1 : 0));
198 ovec[i]<<=num%8;
199 ovec[i]|=ovec[i+1]>>(8-num%8);
201 iv=&ovec[0];
225 iv=&ovec[
[all...]
/freebsd-10.0-release/contrib/ntp/libntp/
H A Dsyssignal.c56 struct sigaction ovec; local
58 n = sigaction(sig, &vec, &ovec);
60 if (ovec.sa_flags
62 && ovec.sa_flags != SA_RESTART
66 sig, ovec.sa_flags);
/freebsd-10.0-release/crypto/openssl/crypto/modes/
H A Dcfb128.c181 unsigned char ovec[16*2 + 1]; /* +1 because we dererefence (but don't use) one byte off the end */ local
186 memcpy(ovec,ivec,16);
192 out[n] = (ovec[16+n] = in[n] ^ ivec[n]);
195 out[n] = (ovec[16+n] = in[n]) ^ ivec[n];
196 /* shift ovec left... */
200 memcpy(ivec,ovec+num,16);
203 ivec[n] = ovec[n+num]<<rem | ovec[n+num+1]>>(8-rem);
205 /* it is not necessary to cleanse ovec, since the IV is not secret */
/freebsd-10.0-release/contrib/tnftp/src/
H A Dprogressbar.c422 struct sigvec vec, ovec; local
427 if (sigvec(sig, &vec, &ovec) < 0)
429 return (ovec.sv_handler);

Completed in 107 milliseconds