HomeSort by relevance Sort by last modified time
    Searched refs:BN_ULONG (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/chromium_org/third_party/openssl/openssl/crypto/bn/
bn_lcl.h 240 # define BN_UMULT_HIGH(a,b) (BN_ULONG)asm("umulh %a0,%a1,%v0",(a),(b))
243 register BN_ULONG ret; \
252 register BN_ULONG ret; \
262 register BN_ULONG ret,discard; \
292 register BN_ULONG ret; \
309 #define Lw(t) (((BN_ULONG)(t))&BN_MASK2)
310 #define Hw(t) (((BN_ULONG)((t)>>BN_BITS2))&BN_MASK2)
316 BN_ULONG *ftl = &(a)->d[(a)->top-1]; \
348 BN_ULONG high,low,ret,tmp=(a); \
360 BN_ULONG high,low,ret,ta=(a);
    [all...]
bn_asm.c 71 BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w)
73 BN_ULONG c1=0;
97 BN_ULONG bn_mul_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w)
99 BN_ULONG c1=0
    [all...]
bn_word.c 63 BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w)
66 BN_ULONG ret=0;
73 return (BN_ULONG)-1;
87 return((BN_ULONG)ret);
90 BN_ULONG BN_div_word(BIGNUM *a, BN_ULONG w)
92 BN_ULONG ret = 0;
100 return (BN_ULONG)-1;
108 return (BN_ULONG)-1
    [all...]
bn_sqr.c 94 BN_ULONG t[8];
103 BN_ULONG t[16];
114 BN_ULONG t[BN_SQR_RECURSIVE_SIZE_NORMAL*2];
121 j=BN_num_bits_word((BN_ULONG)al);
158 void bn_sqr_normal(BN_ULONG *r, const BN_ULONG *a, int n, BN_ULONG *tmp)
161 const BN_ULONG *ap;
162 BN_ULONG *rp;
206 void bn_sqr_recursive(BN_ULONG *r, const BN_ULONG *a, int n2, BN_ULONG *t
    [all...]
bn_nist.c 71 static const BN_ULONG _nist_p_192[][BN_NIST_192_TOP] = {
76 static const BN_ULONG _nist_p_192_sqr[] = {
80 static const BN_ULONG _nist_p_224[][BN_NIST_224_TOP] = {
86 static const BN_ULONG _nist_p_224_sqr[] = {
92 static const BN_ULONG _nist_p_256[][BN_NIST_256_TOP] = {
104 static const BN_ULONG _nist_p_256_sqr[] = {
110 static const BN_ULONG _nist_p_384[][BN_NIST_384_TOP] = {
122 static const BN_ULONG _nist_p_384_sqr[] = {
128 static const BN_ULONG _nist_p_521[] =
134 static const BN_ULONG _nist_p_521_sqr[] =
    [all...]
bn_mul.c 80 BN_ULONG bn_sub_part_words(BN_ULONG *r,
81 const BN_ULONG *a, const BN_ULONG *b,
84 BN_ULONG c, t;
207 BN_ULONG bn_add_part_words(BN_ULONG *r,
208 const BN_ULONG *a, const BN_ULONG *b,
211 BN_ULONG c, l, t
    [all...]
bn_lib.c 136 static const BN_ULONG data_one=1L;
137 static const BIGNUM const_one={(BN_ULONG *)&data_one,1,1,0,BN_FLG_STATIC_DATA};
142 int BN_num_bits_word(BN_ULONG l)
299 static BN_ULONG *bn_expand_internal(const BIGNUM *b, int words)
301 BN_ULONG *A,*a = NULL;
302 const BN_ULONG *B;
317 a=A=(BN_ULONG *)OPENSSL_malloc(sizeof(BN_ULONG)*words);
339 BN_ULONG a0,a1,a2,a3;
356 memset(A,0,sizeof(BN_ULONG)*words)
    [all...]
bn.h 180 #define BN_ULONG unsigned long
208 #define BN_ULONG unsigned long long
237 #define BN_ULONG unsigned int
320 BN_ULONG *d; /* Pointer to an array of 'BN_BITS2' bit chunks. */
336 BN_ULONG n0[2];/* least significant word(s) of Ni;
337 (type changed with 0.9.9, was "BN_ULONG n0;" before) */
405 #define BN_abs_is_word(a,w) ((((a)->top == 1) && ((a)->d[0] == (BN_ULONG)(w))) || \
440 int BN_num_bits_word(BN_ULONG);
483 BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w)
    [all...]
bn_shift.c 65 register BN_ULONG *ap,*rp,t,c;
101 BN_ULONG *ap,*rp,t,c;
138 BN_ULONG *t,*f;
139 BN_ULONG l;
174 BN_ULONG *t,*f;
175 BN_ULONG l,tmp;
bn_div.c 186 BN_ULONG *resp,*wnump;
187 BN_ULONG d0,d1;
317 BN_ULONG q,l0;
319 * snum and sdiv to calculate a BN_ULONG q such that
322 BN_ULONG bn_div_3_words(BN_ULONG*,BN_ULONG,BN_ULONG);
325 BN_ULONG n0,n1,rem=0;
337 q=(BN_ULONG)(((((BN_ULLONG)n0)<<BN_BITS2)|n1)/d0)
    [all...]
  /external/openssl/crypto/bn/
bn_lcl.h 240 # define BN_UMULT_HIGH(a,b) (BN_ULONG)asm("umulh %a0,%a1,%v0",(a),(b))
243 register BN_ULONG ret; \
252 register BN_ULONG ret; \
262 register BN_ULONG ret,discard; \
292 register BN_ULONG ret; \
309 #define Lw(t) (((BN_ULONG)(t))&BN_MASK2)
310 #define Hw(t) (((BN_ULONG)((t)>>BN_BITS2))&BN_MASK2)
316 BN_ULONG *ftl = &(a)->d[(a)->top-1]; \
348 BN_ULONG high,low,ret,tmp=(a); \
360 BN_ULONG high,low,ret,ta=(a);
    [all...]
bn_asm.c 71 BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w)
73 BN_ULONG c1=0;
97 BN_ULONG bn_mul_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w)
99 BN_ULONG c1=0
    [all...]
bn_word.c 63 BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w)
66 BN_ULONG ret=0;
73 return (BN_ULONG)-1;
87 return((BN_ULONG)ret);
90 BN_ULONG BN_div_word(BIGNUM *a, BN_ULONG w)
92 BN_ULONG ret = 0;
100 return (BN_ULONG)-1;
108 return (BN_ULONG)-1
    [all...]
bn_sqr.c 94 BN_ULONG t[8];
103 BN_ULONG t[16];
114 BN_ULONG t[BN_SQR_RECURSIVE_SIZE_NORMAL*2];
121 j=BN_num_bits_word((BN_ULONG)al);
158 void bn_sqr_normal(BN_ULONG *r, const BN_ULONG *a, int n, BN_ULONG *tmp)
161 const BN_ULONG *ap;
162 BN_ULONG *rp;
206 void bn_sqr_recursive(BN_ULONG *r, const BN_ULONG *a, int n2, BN_ULONG *t
    [all...]
bn_nist.c 71 static const BN_ULONG _nist_p_192[][BN_NIST_192_TOP] = {
76 static const BN_ULONG _nist_p_192_sqr[] = {
80 static const BN_ULONG _nist_p_224[][BN_NIST_224_TOP] = {
86 static const BN_ULONG _nist_p_224_sqr[] = {
92 static const BN_ULONG _nist_p_256[][BN_NIST_256_TOP] = {
104 static const BN_ULONG _nist_p_256_sqr[] = {
110 static const BN_ULONG _nist_p_384[][BN_NIST_384_TOP] = {
122 static const BN_ULONG _nist_p_384_sqr[] = {
128 static const BN_ULONG _nist_p_521[] =
134 static const BN_ULONG _nist_p_521_sqr[] =
    [all...]
bn_mul.c 80 BN_ULONG bn_sub_part_words(BN_ULONG *r,
81 const BN_ULONG *a, const BN_ULONG *b,
84 BN_ULONG c, t;
207 BN_ULONG bn_add_part_words(BN_ULONG *r,
208 const BN_ULONG *a, const BN_ULONG *b,
211 BN_ULONG c, l, t
    [all...]
bn_lib.c 136 static const BN_ULONG data_one=1L;
137 static const BIGNUM const_one={(BN_ULONG *)&data_one,1,1,0,BN_FLG_STATIC_DATA};
142 int BN_num_bits_word(BN_ULONG l)
299 static BN_ULONG *bn_expand_internal(const BIGNUM *b, int words)
301 BN_ULONG *A,*a = NULL;
302 const BN_ULONG *B;
317 a=A=(BN_ULONG *)OPENSSL_malloc(sizeof(BN_ULONG)*words);
339 BN_ULONG a0,a1,a2,a3;
356 memset(A,0,sizeof(BN_ULONG)*words)
    [all...]
bn.h 180 #define BN_ULONG unsigned long
208 #define BN_ULONG unsigned long long
237 #define BN_ULONG unsigned int
320 BN_ULONG *d; /* Pointer to an array of 'BN_BITS2' bit chunks. */
336 BN_ULONG n0[2];/* least significant word(s) of Ni;
337 (type changed with 0.9.9, was "BN_ULONG n0;" before) */
405 #define BN_abs_is_word(a,w) ((((a)->top == 1) && ((a)->d[0] == (BN_ULONG)(w))) || \
440 int BN_num_bits_word(BN_ULONG);
483 BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w)
    [all...]
bn_shift.c 65 register BN_ULONG *ap,*rp,t,c;
101 BN_ULONG *ap,*rp,t,c;
138 BN_ULONG *t,*f;
139 BN_ULONG l;
174 BN_ULONG *t,*f;
175 BN_ULONG l,tmp;
  /external/chromium_org/third_party/openssl/openssl/crypto/
sparcv9cap.c 17 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num)
19 int bn_mul_mont_fpu(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num)
    [all...]
  /external/openssl/crypto/
sparcv9cap.c 17 int bn_mul_mont(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num)
19 int bn_mul_mont_fpu(BN_ULONG *rp, const BN_ULONG *ap, const BN_ULONG *bp, const BN_ULONG *np,const BN_ULONG *n0, int num)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
x86_64-gcc.c 59 #define BN_ULONG unsigned long long
61 #define BN_ULONG unsigned long
74 register BN_ULONG high,low; \
91 register BN_ULONG high,low; \
109 BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w)
111 BN_ULONG c1=0;
133 BN_ULONG bn_mul_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w
    [all...]
  /external/openssl/crypto/bn/asm/
x86_64-gcc.c 59 #define BN_ULONG unsigned long long
61 #define BN_ULONG unsigned long
74 register BN_ULONG high,low; \
91 register BN_ULONG high,low; \
109 BN_ULONG bn_mul_add_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w)
111 BN_ULONG c1=0;
133 BN_ULONG bn_mul_words(BN_ULONG *rp, const BN_ULONG *ap, int num, BN_ULONG w
    [all...]
  /external/chromium_org/third_party/openssl/openssl/include/openssl/
bn.h 180 #define BN_ULONG unsigned long
208 #define BN_ULONG unsigned long long
237 #define BN_ULONG unsigned int
320 BN_ULONG *d; /* Pointer to an array of 'BN_BITS2' bit chunks. */
336 BN_ULONG n0[2];/* least significant word(s) of Ni;
337 (type changed with 0.9.9, was "BN_ULONG n0;" before) */
405 #define BN_abs_is_word(a,w) ((((a)->top == 1) && ((a)->d[0] == (BN_ULONG)(w))) || \
440 int BN_num_bits_word(BN_ULONG);
483 BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w)
    [all...]
  /external/openssl/include/openssl/
bn.h 180 #define BN_ULONG unsigned long
208 #define BN_ULONG unsigned long long
237 #define BN_ULONG unsigned int
320 BN_ULONG *d; /* Pointer to an array of 'BN_BITS2' bit chunks. */
336 BN_ULONG n0[2];/* least significant word(s) of Ni;
337 (type changed with 0.9.9, was "BN_ULONG n0;" before) */
405 #define BN_abs_is_word(a,w) ((((a)->top == 1) && ((a)->d[0] == (BN_ULONG)(w))) || \
440 int BN_num_bits_word(BN_ULONG);
483 BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w)
    [all...]

Completed in 652 milliseconds

1 2 3