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

/openwrt/package/network/services/ead/src/tinysrp/
H A Dbn_asm.c224 return((BN_ULONG)(((((BN_ULLONG)h)<<BN_BITS2)|l)/(BN_ULLONG)d));
300 BN_ULLONG ll=0;
307 ll+=(BN_ULLONG)a[0]+b[0];
312 ll+=(BN_ULLONG)a[1]+b[1];
317 ll+=(BN_ULLONG)a[2]+b[2];
322 ll+=(BN_ULLONG)a[3]+b[3];
H A Dbn_lcl.h269 BN_ULLONG t; \
270 t=(BN_ULLONG)w * (a) + (r) + (c); \
276 BN_ULLONG t; \
277 t=(BN_ULLONG)w * (a) + (c); \
283 BN_ULLONG t; \
284 t=(BN_ULLONG)(a)*(a); \
330 #define LL2HBITS(a) ((BN_ULLONG)((a)&BN_MASKl)<<BN_BITS2)
H A Dbn.h97 #define BN_ULLONG unsigned long long macro
123 #undef BN_ULLONG macro
143 #define BN_ULLONG unsigned _int64 macro
145 #define BN_ULLONG unsigned long long macro
174 #define BN_ULLONG unsigned long macro
197 #define BN_ULLONG unsigned short macro
H A Dbn_div.c134 * in reply to ((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0 (I fail to
250 BN_ULLONG t2;
253 q=(BN_ULONG)(((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0);
260 * rem doesn't have to be BN_ULLONG. The least we
265 t2=(BN_ULLONG)d1*q;
269 if (t2 <= ((((BN_ULLONG)rem)<<BN_BITS2)|wnump[-2]))
290 mul64(t2l,t2h,ql,qh); /* t2=(BN_ULLONG)d1*q; */
H A Dt_conf.c644 BN_ULLONG ret=0;
655 ret=(BN_ULLONG)(((ret<<(BN_ULLONG)BN_BITS2)|a->d[i])%
656 (BN_ULLONG)w);

Completed in 83 milliseconds