LCOV - code coverage report | ||||||||||||||||||||||
|
||||||||||||||||||||||
Line data Source code 1 : #include "tommath_private.h" 2 : #ifdef BN_MP_ZERO_C 3 : /* LibTomMath, multiple-precision integer library -- Tom St Denis */ 4 : /* SPDX-License-Identifier: Unlicense */ 5 : 6 : /* set to zero */ 7 27859 : void mp_zero(mp_int *a) 8 : { 9 27859 : a->sign = MP_ZPOS; 10 27859 : a->used = 0; 11 27859 : MP_ZERO_DIGITS(a->dp, a->alloc); 12 27859 : } 13 : #endif |
Generated by: LCOV version 1.13 |