LCOV - code coverage report
Current view: top level - source4/heimdal/lib/hcrypto/libtommath - bn_mp_add_d.c (source / functions) Hit Total Coverage
Test: coverage report for abartlet/fix-coverage dd10fb34 Lines: 0 34 0.0 %
Date: 2021-09-23 10:06:22 Functions: 0 1 0.0 %

          Line data    Source code
       1             : #include <tommath.h>
       2             : #ifdef BN_MP_ADD_D_C
       3             : /* LibTomMath, multiple-precision integer library -- Tom St Denis
       4             :  *
       5             :  * LibTomMath is a library that provides multiple-precision
       6             :  * integer arithmetic as well as number theoretic functionality.
       7             :  *
       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.
      11             :  *
      12             :  * The library is free for all purposes without any express
      13             :  * guarantee it works.
      14             :  *
      15             :  * Tom St Denis, tomstdenis@gmail.com, http://libtom.org
      16             :  */
      17             : 
      18             : /* single digit addition */
      19             : int
      20           0 : mp_add_d (mp_int * a, mp_digit b, mp_int * c)
      21             : {
      22             :   int     res, ix, oldused;
      23             :   mp_digit *tmpa, *tmpc, mu;
      24             : 
      25             :   /* grow c as required */
      26           0 :   if (c->alloc < a->used + 1) {
      27           0 :      if ((res = mp_grow(c, a->used + 1)) != MP_OKAY) {
      28           0 :         return res;
      29             :      }
      30             :   }
      31             : 
      32             :   /* if a is negative and |a| >= b, call c = |a| - b */
      33           0 :   if (a->sign == MP_NEG && (a->used > 1 || a->dp[0] >= b)) {
      34             :      /* temporarily fix sign of a */
      35           0 :      a->sign = MP_ZPOS;
      36             : 
      37             :      /* c = |a| - b */
      38           0 :      res = mp_sub_d(a, b, c);
      39             : 
      40             :      /* fix sign  */
      41           0 :      a->sign = c->sign = MP_NEG;
      42             : 
      43             :      /* clamp */
      44           0 :      mp_clamp(c);
      45             : 
      46           0 :      return res;
      47             :   }
      48             : 
      49             :   /* old number of used digits in c */
      50           0 :   oldused = c->used;
      51             : 
      52             :   /* sign always positive */
      53           0 :   c->sign = MP_ZPOS;
      54             : 
      55             :   /* source alias */
      56           0 :   tmpa    = a->dp;
      57             : 
      58             :   /* destination alias */
      59           0 :   tmpc    = c->dp;
      60             : 
      61             :   /* if a is positive */
      62           0 :   if (a->sign == MP_ZPOS) {
      63             :      /* add digit, after this we're propagating
      64             :       * the carry.
      65             :       */
      66           0 :      *tmpc   = *tmpa++ + b;
      67           0 :      mu      = *tmpc >> DIGIT_BIT;
      68           0 :      *tmpc++ &= MP_MASK;
      69             : 
      70             :      /* now handle rest of the digits */
      71           0 :      for (ix = 1; ix < a->used; ix++) {
      72           0 :         *tmpc   = *tmpa++ + mu;
      73           0 :         mu      = *tmpc >> DIGIT_BIT;
      74           0 :         *tmpc++ &= MP_MASK;
      75             :      }
      76             :      /* set final carry */
      77           0 :      ix++;
      78           0 :      *tmpc++  = mu;
      79             : 
      80             :      /* setup size */
      81           0 :      c->used = a->used + 1;
      82             :   } else {
      83             :      /* a was negative and |a| < b */
      84           0 :      c->used  = 1;
      85             : 
      86             :      /* the result is a single digit */
      87           0 :      if (a->used == 1) {
      88           0 :         *tmpc++  =  b - a->dp[0];
      89             :      } else {
      90           0 :         *tmpc++  =  b;
      91             :      }
      92             : 
      93             :      /* setup count so the clearing of oldused
      94             :       * can fall through correctly
      95             :       */
      96           0 :      ix       = 1;
      97             :   }
      98             : 
      99             :   /* now zero to oldused */
     100           0 :   while (ix++ < oldused) {
     101           0 :      *tmpc++ = 0;
     102             :   }
     103           0 :   mp_clamp(c);
     104             : 
     105           0 :   return MP_OKAY;
     106             : }
     107             : 
     108             : #endif
     109             : 
     110             : /* $Source: /cvs/libtom/libtommath/bn_mp_add_d.c,v $ */
     111             : /* $Revision: 1.5 $ */
     112             : /* $Date: 2006/12/28 01:25:13 $ */

Generated by: LCOV version 1.13