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

/barrelfish-master/lib/openssl-1.0.0d/crypto/bn/
H A Dbn_word.c68 BN_ULLONG ret=0;
83 ret=(BN_ULLONG)(((ret<<(BN_ULLONG)BN_BITS2)|a->d[i])%
84 (BN_ULLONG)w);
H A Dbn_lcl.h306 BN_ULLONG t; \
307 t=(BN_ULLONG)w * (a) + (r) + (c); \
313 BN_ULLONG t; \
314 t=(BN_ULLONG)w * (a) + (c); \
320 BN_ULLONG t; \
321 t=(BN_ULLONG)(a)*(a); \
394 #define LL2HBITS(a) ((BN_ULLONG)((a)&BN_MASKl)<<BN_BITS2)
H A Dbn_div.c137 * in reply to ((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0 (I fail to
308 BN_ULLONG t2;
311 q=(BN_ULONG)(((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0);
323 * rem doesn't have to be BN_ULLONG. The least we
328 t2=(BN_ULLONG)d1*q;
332 if (t2 <= ((((BN_ULLONG)rem)<<BN_BITS2)|wnump[-2]))
362 mul64(t2l,t2h,ql,qh); /* t2=(BN_ULLONG)d1*q; */
535 BN_ULLONG t2;
538 q=(BN_ULONG)(((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0);
550 * rem doesn't have to be BN_ULLONG
[all...]
H A Dbn_asm.c232 return((BN_ULONG)(((((BN_ULLONG)h)<<BN_BITS2)|l)/(BN_ULLONG)d));
308 BN_ULLONG ll=0;
316 ll+=(BN_ULLONG)a[0]+b[0];
319 ll+=(BN_ULLONG)a[1]+b[1];
322 ll+=(BN_ULLONG)a[2]+b[2];
325 ll+=(BN_ULLONG)a[3]+b[3];
333 ll+=(BN_ULLONG)a[0]+b[0];
443 t=(BN_ULLONG)a*b; \
450 t=(BN_ULLONG)
[all...]
H A Dbn.h179 #define BN_ULLONG unsigned long long macro
207 #undef BN_ULLONG macro
230 # define BN_ULLONG unsigned __int64 macro
233 # define BN_ULLONG unsigned long long macro
H A Dbn_lib.c152 (int)sizeof(BN_ULLONG)*8,(int)sizeof(BN_ULONG)*8);
/barrelfish-master/lib/openssl-1.0.0d/ssl/
H A Dssl_locl.h218 #define n2l6(c,l) (l =((BN_ULLONG)(*((c)++)))<<40, \
219 l|=((BN_ULLONG)(*((c)++)))<<32, \
220 l|=((BN_ULLONG)(*((c)++)))<<24, \
221 l|=((BN_ULLONG)(*((c)++)))<<16, \
222 l|=((BN_ULLONG)(*((c)++)))<< 8, \
223 l|=((BN_ULLONG)(*((c)++))))
/barrelfish-master/include/openssl/
H A Dbn.h179 #define BN_ULLONG unsigned long long macro
207 #undef BN_ULLONG macro
230 # define BN_ULLONG unsigned __int64 macro
233 # define BN_ULLONG unsigned long long macro

Completed in 116 milliseconds