Searched refs:wnum (Results 1 - 11 of 11) sorted by relevance

/external/openssl/crypto/bn/
H A Dbn_div.c185 BIGNUM *tmp,wnum,*snum,*sdiv,*res; local
270 wnum.neg = 0;
271 wnum.d = &(snum->d[loop]);
272 wnum.top = div_n;
274 wnum.dmax = snum->dmax - loop; /* so we don't step out of bounds */
295 if (BN_ucmp(&wnum,sdiv) >= 0)
300 bn_clear_top2max(&wnum);
301 bn_sub_words(wnum.d, wnum.d, sdiv->d, div_n);
320 * | wnum
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/bn/
H A Ddiv.c118 BIGNUM *tmp, wnum, *snum, *sdiv, *res; local
207 wnum.neg = 0;
208 wnum.d = &(snum->d[loop]);
209 wnum.top = div_n;
211 wnum.dmax = snum->dmax - loop; /* so we don't step out of bounds */
235 if (BN_ucmp(&wnum, sdiv) >= 0) {
236 bn_sub_words(wnum.d, wnum.d, sdiv->d, div_n);
254 * calculate a BN_ULONG q such that | wnum - sdiv * q | < sdiv */
334 wnum
[all...]
/external/chromium_org/third_party/boringssl/src/include/openssl/
H A Dssl2.h169 unsigned int wnum; /* number of bytes sent so far */ member in struct:ssl2_state_st
H A Dssl3.h385 unsigned int wnum; /* number of bytes sent so far */ member in struct:ssl3_state_st
/external/openssl/include/openssl/
H A Dssl2.h169 unsigned int wnum; /* number of bytes sent so far */ member in struct:ssl2_state_st
H A Dssl3.h447 unsigned int wnum; /* number of bytes sent so far */ member in struct:ssl3_state_st
/external/openssl/ssl/
H A Dssl2.h169 unsigned int wnum; /* number of bytes sent so far */ member in struct:ssl2_state_st
H A Ds2_pkt.c445 tot=s->s2->wnum;
446 s->s2->wnum=0;
454 s->s2->wnum=tot;
H A Ds3_pkt.c605 OPENSSL_assert(s->s3->wnum <= INT_MAX);
606 tot=s->s3->wnum;
607 s->s3->wnum=0;
666 s->s3->wnum=tot;
H A Dssl3.h447 unsigned int wnum; /* number of bytes sent so far */ member in struct:ssl3_state_st
/external/chromium_org/third_party/boringssl/src/ssl/
H A Ds3_pkt.c553 assert(s->s3->wnum <= INT_MAX);
554 tot=s->s3->wnum;
555 s->s3->wnum=0;
613 s->s3->wnum=tot;

Completed in 198 milliseconds