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

/freebsd-9.3-release/crypto/openssl/crypto/bn/
H A Dbn_opt.c79 (int)sizeof(BN_ULLONG) * 8, (int)sizeof(BN_ULONG) * 8);
H A Dbn_word.c68 BN_ULLONG ret = 0;
82 ret = (BN_ULLONG) (((ret << (BN_ULLONG) BN_BITS2) | a->d[i]) %
83 (BN_ULLONG) w);
H A Dbn_lcl.h299 BN_ULLONG t; \
300 t=(BN_ULLONG)w * (a) + (r) + (c); \
306 BN_ULLONG t; \
307 t=(BN_ULLONG)w * (a) + (c); \
313 BN_ULLONG t; \
314 t=(BN_ULLONG)(a)*(a); \
387 # define LL2HBITS(a) ((BN_ULLONG)((a)&BN_MASKl)<<BN_BITS2)
H A Dbn_div.c146 * in reply to ((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0 (I fail to
331 BN_ULLONG t2;
334 q = (BN_ULONG)(((((BN_ULLONG) n0) << BN_BITS2) | n1) / d0);
345 * rem doesn't have to be BN_ULLONG. The least we
350 t2 = (BN_ULLONG) d1 *q;
353 if (t2 <= ((((BN_ULLONG) rem) << BN_BITS2) | wnump[-2]))
386 mul64(t2l, t2h, ql, qh); /* t2=(BN_ULLONG)d1*q; */
573 BN_ULLONG t2;
576 q = (BN_ULONG)(((((BN_ULLONG) n0) << BN_BITS2) | n1) / d0);
587 * rem doesn't have to be BN_ULLONG
[all...]
H A Dbn_asm.c257 return ((BN_ULONG)(((((BN_ULLONG) h) << BN_BITS2) | l) / (BN_ULLONG) d));
332 BN_ULLONG ll = 0;
339 ll += (BN_ULLONG) a[0] + b[0];
345 ll += (BN_ULLONG) a[1] + b[1];
351 ll += (BN_ULLONG) a[2] + b[2];
357 ll += (BN_ULLONG) a[3] + b[3];
496 t=(BN_ULLONG)a*b; \
503 t=(BN_ULLONG)a*b; \
513 t=(BN_ULLONG)
[all...]
H A Dbn.h126 # define BN_ULLONG unsigned long long macro
153 # undef BN_ULLONG macro
174 # define BN_ULLONG unsigned __int64 macro
176 # define BN_ULLONG unsigned long long macro
206 # define BN_ULLONG unsigned long macro
229 # define BN_ULLONG unsigned short macro
/freebsd-9.3-release/crypto/openssl/crypto/pqueue/
H A Dpq_compat.h121 # define PQ_64BIT BN_ULLONG
/freebsd-9.3-release/crypto/openssl/ssl/
H A Dssl_locl.h201 # define n2l6(c,l) (l =((BN_ULLONG)(*((c)++)))<<40, \
202 l|=((BN_ULLONG)(*((c)++)))<<32, \
203 l|=((BN_ULLONG)(*((c)++)))<<24, \
204 l|=((BN_ULLONG)(*((c)++)))<<16, \
205 l|=((BN_ULLONG)(*((c)++)))<< 8, \
206 l|=((BN_ULLONG)(*((c)++))))

Completed in 76 milliseconds