s3:smb2_server: pass smbXsrv_connection to smbd_server_connection_terminate*()
[Samba.git] / source4 / heimdal / lib / hcrypto / libtommath / bn_mp_sub_d.c
blob06cdca636d93d80eb2d9941102b16308c3b6108d
1 #include <tommath.h>
2 #ifdef BN_MP_SUB_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://libtom.org
18 /* single digit subtraction */
19 int
20 mp_sub_d (mp_int * a, mp_digit b, mp_int * c)
22 mp_digit *tmpa, *tmpc, mu;
23 int res, ix, oldused;
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 just do an unsigned
33 * addition [with fudged signs]
35 if (a->sign == MP_NEG) {
36 a->sign = MP_ZPOS;
37 res = mp_add_d(a, b, c);
38 a->sign = c->sign = MP_NEG;
40 /* clamp */
41 mp_clamp(c);
43 return res;
46 /* setup regs */
47 oldused = c->used;
48 tmpa = a->dp;
49 tmpc = c->dp;
51 /* if a <= b simply fix the single digit */
52 if ((a->used == 1 && a->dp[0] <= b) || a->used == 0) {
53 if (a->used == 1) {
54 *tmpc++ = b - *tmpa;
55 } else {
56 *tmpc++ = b;
58 ix = 1;
60 /* negative/1digit */
61 c->sign = MP_NEG;
62 c->used = 1;
63 } else {
64 /* positive/size */
65 c->sign = MP_ZPOS;
66 c->used = a->used;
68 /* subtract first digit */
69 *tmpc = *tmpa++ - b;
70 mu = *tmpc >> (sizeof(mp_digit) * CHAR_BIT - 1);
71 *tmpc++ &= MP_MASK;
73 /* handle rest of the digits */
74 for (ix = 1; ix < a->used; ix++) {
75 *tmpc = *tmpa++ - mu;
76 mu = *tmpc >> (sizeof(mp_digit) * CHAR_BIT - 1);
77 *tmpc++ &= MP_MASK;
81 /* zero excess digits */
82 while (ix++ < oldused) {
83 *tmpc++ = 0;
85 mp_clamp(c);
86 return MP_OKAY;
89 #endif
91 /* $Source: /cvs/libtom/libtommath/bn_mp_sub_d.c,v $ */
92 /* $Revision: 1.6 $ */
93 /* $Date: 2006/12/28 01:25:13 $ */