Correct PPTP server firewall rules chain.
[tomato/davidwu.git] / release / src / router / dropbear / libtommath / bn_mp_add_d.c
blob5af5aa9886e1364b656c006fdc626ba58a9b9798
1 #include <tommath.h>
2 #ifdef BN_MP_ADD_D_C
3 /* LibTomMath, multiple-precision integer library -- Tom St Denis
5 * LibTomMath is a library that provides multiple-precision
6 * integer arithmetic as well as number theoretic functionality.
8 * The library was designed directly after the MPI library by
9 * Michael Fromberger but has been written from scratch with
10 * additional optimizations in place.
12 * The library is free for all purposes without any express
13 * guarantee it works.
15 * Tom St Denis, tomstdenis@gmail.com, http://math.libtomcrypt.com
18 /* single digit addition */
19 int
20 mp_add_d (mp_int * a, mp_digit b, mp_int * c)
22 int res, ix, oldused;
23 mp_digit *tmpa, *tmpc, mu;
25 /* grow c as required */
26 if (c->alloc < a->used + 1) {
27 if ((res = mp_grow(c, a->used + 1)) != MP_OKAY) {
28 return res;
32 /* if a is negative and |a| >= b, call c = |a| - b */
33 if (a->sign == MP_NEG && (a->used > 1 || a->dp[0] >= b)) {
34 /* temporarily fix sign of a */
35 a->sign = MP_ZPOS;
37 /* c = |a| - b */
38 res = mp_sub_d(a, b, c);
40 /* fix sign */
41 a->sign = c->sign = MP_NEG;
43 /* clamp */
44 mp_clamp(c);
46 return res;
49 /* old number of used digits in c */
50 oldused = c->used;
52 /* sign always positive */
53 c->sign = MP_ZPOS;
55 /* source alias */
56 tmpa = a->dp;
58 /* destination alias */
59 tmpc = c->dp;
61 /* if a is positive */
62 if (a->sign == MP_ZPOS) {
63 /* add digit, after this we're propagating
64 * the carry.
66 *tmpc = *tmpa++ + b;
67 mu = *tmpc >> DIGIT_BIT;
68 *tmpc++ &= MP_MASK;
70 /* now handle rest of the digits */
71 for (ix = 1; ix < a->used; ix++) {
72 *tmpc = *tmpa++ + mu;
73 mu = *tmpc >> DIGIT_BIT;
74 *tmpc++ &= MP_MASK;
76 /* set final carry */
77 ix++;
78 *tmpc++ = mu;
80 /* setup size */
81 c->used = a->used + 1;
82 } else {
83 /* a was negative and |a| < b */
84 c->used = 1;
86 /* the result is a single digit */
87 if (a->used == 1) {
88 *tmpc++ = b - a->dp[0];
89 } else {
90 *tmpc++ = b;
93 /* setup count so the clearing of oldused
94 * can fall through correctly
96 ix = 1;
99 /* now zero to oldused */
100 while (ix++ < oldused) {
101 *tmpc++ = 0;
103 mp_clamp(c);
105 return MP_OKAY;
108 #endif
110 /* $Source: /cvs/libtom/libtommath/bn_mp_add_d.c,v $ */
111 /* $Revision: 1.4 $ */
112 /* $Date: 2006/03/31 14:18:44 $ */