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

/freebsd-11-stable/crypto/openssl/crypto/bn/
H A Dbn_word.c80 if (w > ((BN_ULONG)1 << BN_BITS4)) {
97 * We can assume here that | w <= ((BN_ULONG)1 << BN_BITS4) | and so
98 * | ret < ((BN_ULONG)1 << BN_BITS4) | and therefore the shifts here are
101 ret = ((ret << BN_BITS4) | ((a->d[i] >> BN_BITS4) & BN_MASK2l)) % w;
102 ret = ((ret << BN_BITS4) | (a->d[i] & BN_MASK2l)) % w;
H A Dbn_lcl.h432 # define HBITS(a) (((a)>>BN_BITS4)&BN_MASK2l)
433 # define L2HBITS(a) (((a)<<BN_BITS4)&BN_MASK2)
467 h+=(m&BN_MASK2h1)>>(BN_BITS4-1); \
468 m =(m&BN_MASK2l)<<(BN_BITS4+1); \
H A Dbn_asm.c281 dh = (d & BN_MASK2h) >> BN_BITS4;
284 if ((h >> BN_BITS4) == dh)
294 ((tl) <= ((t << BN_BITS4) | ((l & BN_MASK2h) >> BN_BITS4))))
300 t = (tl >> BN_BITS4);
301 tl = (tl << BN_BITS4) & BN_MASK2h;
316 ret = q << BN_BITS4;
317 h = ((h << BN_BITS4) | (l >> BN_BITS4)) & BN_MASK2;
318 l = (l & BN_MASK2l) << BN_BITS4;
[all...]
H A Dbn.h188 # define BN_BITS4 32 macro
217 # define BN_BITS4 32 macro
246 # define BN_BITS4 16 macro
/freebsd-11-stable/crypto/openssl/apps/
H A Dgenrsa.c287 l <<= BN_BITS4; local
288 l <<= BN_BITS4; local

Completed in 66 milliseconds