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

/freebsd-11-stable/crypto/openssl/crypto/des/
H A Dcfb_enc.c65 * that if you hame numbits=12 and length=2 the first 12 bits will be
73 void DES_cfb_encrypt(const unsigned char *in, unsigned char *out, int numbits, argument
79 register int num = numbits / 8, n = (numbits + 7) / 8, i, rem =
80 numbits % 8;
95 if (numbits <= 0 || numbits > 64)
116 if (numbits == 32) {
119 } else if (numbits == 64) {
159 if (numbits
[all...]
H A Dofb_enc.c63 * that if you hame numbits=12 and length=2 the first 12 bits will be
67 void DES_ofb_encrypt(const unsigned char *in, unsigned char *out, int numbits, argument
71 register DES_LONG d0, d1, vv0, vv1, v0, v1, n = (numbits + 7) / 8;
74 register int num = numbits;
H A DDES.xs137 des_cfb_encrypt(input,numbits,ks,ivec,encrypt)
139 int numbits
156 (int)numbits,(long)len,*ks,ivec,encrypt);
179 des_ofb_encrypt(input,numbits,ks,ivec)
181 int numbits
197 numbits,len,*ks,ivec);
H A Ddes_old.c136 int numbits, long length,
140 DES_cfb_encrypt(in, out, numbits, length,
249 int numbits, long length,
253 DES_ofb_encrypt(in, out, numbits, length, (DES_key_schedule *)schedule,
135 _ossl_old_des_cfb_encrypt(unsigned char *in, unsigned char *out, int numbits, long length, des_key_schedule schedule, _ossl_old_des_cblock *ivec, int enc) argument
248 _ossl_old_des_ofb_encrypt(unsigned char *in, unsigned char *out, int numbits, long length, des_key_schedule schedule, _ossl_old_des_cblock *ivec) argument
H A Dcfb64ede.c146 int numbits, long length, DES_key_schedule *ks1,
151 register unsigned long l = length, n = ((unsigned int)numbits + 7) / 8;
152 register int num = numbits, i;
145 DES_ede3_cfb_encrypt(const unsigned char *in, unsigned char *out, int numbits, long length, DES_key_schedule *ks1, DES_key_schedule *ks2, DES_key_schedule *ks3, DES_cblock *ivec, int enc) argument
H A Ddes.h149 void DES_cfb_encrypt(const unsigned char *in, unsigned char *out, int numbits,
195 int numbits, long length, DES_key_schedule *ks1,
213 void DES_ofb_encrypt(const unsigned char *in, unsigned char *out, int numbits,
H A Ddes_old.h362 int numbits, long length,
415 int numbits, long length,
/freebsd-11-stable/sys/arm/include/
H A Dat91_gpio.h96 uint32_t numbits; /* Number of bits to clock out */ member in struct:at91_gpio_bang_many
/freebsd-11-stable/usr.bin/dc/
H A Dinout.c396 int ch, i, numbits; local
404 numbits = BN_num_bytes(v) * 8;
405 while (numbits > 0) {
408 ch |= BN_is_bit_set(v, numbits-i-1) << (7 - i);
410 numbits -= 8;
/freebsd-11-stable/crypto/openssl/apps/
H A Ddsaparam.c122 int numbits = -1, num, genkey = 0; local
195 numbits = num;
274 if (numbits > 0) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DAPInt.cpp118 APInt::APInt(unsigned numbits, StringRef Str, uint8_t radix) argument
119 : BitWidth(numbits) {
121 fromString(numbits, Str, radix);
2117 void APInt::fromString(unsigned numbits, StringRef str, uint8_t radix) {
2132 assert((slen <= numbits || radix != 2) && "Insufficient bit width");
2133 assert(((slen-1)*3 <= numbits || radix != 8) && "Insufficient bit width");
2134 assert(((slen-1)*4 <= numbits || radix != 16) && "Insufficient bit width");
2135 assert((((slen-1)*64)/22 <= numbits || radix != 10) &&
/freebsd-11-stable/sys/arm/at91/
H A Dat91_pio.c457 bitcount = bangmany->numbits;

Completed in 99 milliseconds