Searched defs:digs (Results 1 - 17 of 17) sorted by relevance

/external/dropbear/libtommath/
H A Dbn_mp_mul.c43 int digs = a->used + b->used + 1; local
46 if ((digs < MP_WARRAY) &&
49 res = fast_s_mp_mul_digs (a, b, c, digs);
H A Dbn_mp_radix_size.c21 int res, digs; local
43 /* digs is the digit count */
44 digs = 0;
48 ++digs;
65 ++digs;
69 /* return digs + 1, the 1 is for the NULL byte that would be required. */
70 *size = digs + 1;
H A Dbn_mp_toradix.c21 int res, digs; local
49 digs = 0;
56 ++digs;
62 bn_reverse ((unsigned char *)_s, digs);
H A Dbn_mp_toradix_n.c24 int res, digs; local
58 digs = 0;
69 ++digs;
75 bn_reverse ((unsigned char *)_s, digs);
H A Dbn_mp_montgomery_reduce.c22 int ix, res, digs; local
31 digs = n->used * 2 + 1;
32 if ((digs < MP_WARRAY) &&
39 if (x->alloc < digs) {
40 if ((res = mp_grow (x, digs)) != MP_OKAY) {
44 x->used = digs;
H A Dbn_s_mp_mul_digs.c18 /* multiplies |a| * |b| and only computes upto digs digits of result
22 int s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs) argument
31 if (((digs) < MP_WARRAY) &&
34 return fast_s_mp_mul_digs (a, b, c, digs);
37 if ((res = mp_init_size (&t, digs)) != MP_OKAY) {
40 t.used = digs;
48 /* limit ourselves to making digs digits of output */
49 pb = MIN (b->used, digs - ix);
74 /* set carry if it is placed below digs */
75 if (ix + iy < digs) {
[all...]
H A Dbn_s_mp_mul_high_digs.c18 /* multiplies |a| * |b| and does not compute the lower digs digits
22 s_mp_mul_high_digs (mp_int * a, mp_int * b, mp_int * c, int digs) argument
34 return fast_s_mp_mul_high_digs (a, b, c, digs);
53 tmpt = &(t.dp[digs]);
56 tmpy = b->dp + (digs - ix);
58 for (iy = digs - ix; iy < pb; iy++) {
H A Dbn_fast_s_mp_mul_digs.c34 int fast_s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs) argument
41 if (c->alloc < digs) {
42 if ((res = mp_grow (c, digs)) != MP_OKAY) {
48 pa = MIN(digs, a->used + b->used);
H A Dbn_fast_s_mp_mul_high_digs.c19 * output digits *above* digs. See the comments for fast_s_mul_digs
27 int fast_s_mp_mul_high_digs (mp_int * a, mp_int * b, mp_int * c, int digs) argument
44 for (ix = digs; ix < pa; ix++) {
80 tmpc = c->dp + digs;
81 for (ix = digs; ix < pa; ix++) {
/external/openssl/crypto/srp/
H A Dsrp_vfy.c480 unsigned char digs[SHA_DIGEST_LENGTH]; local
511 EVP_DigestFinal_ex(&ctxt, digs, NULL);
513 if (SRP_user_pwd_set_sv_BN(user, BN_bin2bn(digs,SHA_DIGEST_LENGTH,NULL), BN_bin2bn(digv,SHA_DIGEST_LENGTH, NULL)))
/external/dnsmasq/src/
H A Drfc1035.c95 unsigned int count, digs; local
106 digs = ((count-1)>>2)+1;
108 /* output is \[x<hex>/siz]. which is digs+9 chars */
109 if (cp - (unsigned char *)name + digs + 9 >= MAXDNAME)
117 for (j=0; j<digs; j++)
H A Doption.c670 int i, addrs, digs, is_addr, is_hex, is_dec, is_string, dots; local
741 addrs = digs = 1;
751 digs++;
795 if (is_hex && digs > 1)
797 new->len = digs;
799 parse_hex(comma, new->val, digs, (flags & DHOPT_MATCH) ? &new->u.wildcard_mask : NULL, NULL);
/external/wpa_supplicant_6/wpa_supplicant/src/tls/
H A Dlibtommath.c130 static int s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs);
132 static int s_mp_mul_high_digs(mp_int * a, mp_int * b, mp_int * c, int digs);
134 static int fast_s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs);
505 int digs = a->used + b->used + 1; local
507 if ((digs < MP_WARRAY) &&
510 res = fast_s_mp_mul_digs (a, b, c, digs);
2322 /* multiplies |a| * |b| and only computes upto digs digits of result
2326 static int s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs) argument
2335 if (((digs) < MP_WARRAY) &&
2338 return fast_s_mp_mul_digs (a, b, c, digs);
2408 fast_s_mp_mul_digs(mp_int * a, mp_int * b, mp_int * c, int digs) argument
2574 s_mp_mul_high_digs(mp_int * a, mp_int * b, mp_int * c, int digs) argument
[all...]
/external/wpa_supplicant_8/hostapd/src/tls/
H A Dlibtommath.c138 static int s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs);
140 static int s_mp_mul_high_digs(mp_int * a, mp_int * b, mp_int * c, int digs);
142 static int fast_s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs);
513 int digs = a->used + b->used + 1; local
515 if ((digs < MP_WARRAY) &&
518 res = fast_s_mp_mul_digs (a, b, c, digs);
2330 /* multiplies |a| * |b| and only computes up to digs digits of result
2334 static int s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs) argument
2343 if (((digs) < MP_WARRAY) &&
2346 return fast_s_mp_mul_digs (a, b, c, digs);
2416 fast_s_mp_mul_digs(mp_int * a, mp_int * b, mp_int * c, int digs) argument
2582 s_mp_mul_high_digs(mp_int * a, mp_int * b, mp_int * c, int digs) argument
[all...]
/external/wpa_supplicant_8/src/tls/
H A Dlibtommath.c138 static int s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs);
140 static int s_mp_mul_high_digs(mp_int * a, mp_int * b, mp_int * c, int digs);
142 static int fast_s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs);
513 int digs = a->used + b->used + 1; local
515 if ((digs < MP_WARRAY) &&
518 res = fast_s_mp_mul_digs (a, b, c, digs);
2330 /* multiplies |a| * |b| and only computes up to digs digits of result
2334 static int s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs) argument
2343 if (((digs) < MP_WARRAY) &&
2346 return fast_s_mp_mul_digs (a, b, c, digs);
2416 fast_s_mp_mul_digs(mp_int * a, mp_int * b, mp_int * c, int digs) argument
2582 s_mp_mul_high_digs(mp_int * a, mp_int * b, mp_int * c, int digs) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/tls/
H A Dlibtommath.c138 static int s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs);
140 static int s_mp_mul_high_digs(mp_int * a, mp_int * b, mp_int * c, int digs);
142 static int fast_s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs);
513 int digs = a->used + b->used + 1; local
515 if ((digs < MP_WARRAY) &&
518 res = fast_s_mp_mul_digs (a, b, c, digs);
2330 /* multiplies |a| * |b| and only computes up to digs digits of result
2334 static int s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs) argument
2343 if (((digs) < MP_WARRAY) &&
2346 return fast_s_mp_mul_digs (a, b, c, digs);
2416 fast_s_mp_mul_digs(mp_int * a, mp_int * b, mp_int * c, int digs) argument
2582 s_mp_mul_high_digs(mp_int * a, mp_int * b, mp_int * c, int digs) argument
[all...]
/external/dropbear/libtommath/pre_gen/
H A Dmpi.c414 int fast_s_mp_mul_digs (mp_int * a, mp_int * b, mp_int * c, int digs) argument
421 if (c->alloc < digs) {
422 if ((res = mp_grow (c, digs)) != MP_OKAY) {
428 pa = MIN(digs, a->used + b->used);
510 * output digits *above* digs. See the comments for fast_s_mul_digs
518 int fast_s_mp_mul_high_digs (mp_int * a, mp_int * b, mp_int * c, int digs) argument
535 for (ix = digs; ix < pa; ix++) {
571 tmpc = c->dp + digs;
572 for (ix = digs; ix < pa; ix++) {
4752 int ix, res, digs; local
4958 int digs = a->used + b->used + 1; local
6215 int res, digs; local
8359 int res, digs; local
8441 int res, digs; local
9135 s_mp_mul_digs(mp_int * a, mp_int * b, mp_int * c, int digs) argument
9229 s_mp_mul_high_digs(mp_int * a, mp_int * b, mp_int * c, int digs) argument
[all...]

Completed in 134 milliseconds