summaryrefslogtreecommitdiff
path: root/plugins/MirOTR/libgcrypt-1.4.6/mpi/mpi-inline.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/MirOTR/libgcrypt-1.4.6/mpi/mpi-inline.h')
-rw-r--r--plugins/MirOTR/libgcrypt-1.4.6/mpi/mpi-inline.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/plugins/MirOTR/libgcrypt-1.4.6/mpi/mpi-inline.h b/plugins/MirOTR/libgcrypt-1.4.6/mpi/mpi-inline.h
index 88d9f56c41..fb43951b1d 100644
--- a/plugins/MirOTR/libgcrypt-1.4.6/mpi/mpi-inline.h
+++ b/plugins/MirOTR/libgcrypt-1.4.6/mpi/mpi-inline.h
@@ -41,20 +41,20 @@ _gcry_mpih_add_1( mpi_ptr_t res_ptr, mpi_ptr_t s1_ptr,
x = *s1_ptr++;
s2_limb += x;
*res_ptr++ = s2_limb;
- if( s2_limb < x ) { /* sum is less than the left operand: handle carry */
+ if ( s2_limb < x ) { /* sum is less than the left operand: handle carry */
while( --s1_size ) {
x = *s1_ptr++ + 1; /* add carry */
*res_ptr++ = x; /* and store */
- if( x ) /* not 0 (no overflow): we can stop */
+ if ( x ) /* not 0 (no overflow): we can stop */
goto leave;
}
return 1; /* return carry (size of s1 to small) */
}
leave:
- if( res_ptr != s1_ptr ) { /* not the same variable */
+ if ( res_ptr != s1_ptr ) { /* not the same variable */
mpi_size_t i; /* copy the rest */
- for( i=0; i < s1_size-1; i++ )
+ for ( i=0; i < s1_size-1; i++ )
res_ptr[i] = s1_ptr[i];
}
return 0; /* no carry */
@@ -68,10 +68,10 @@ _gcry_mpih_add(mpi_ptr_t res_ptr, mpi_ptr_t s1_ptr, mpi_size_t s1_size,
{
mpi_limb_t cy = 0;
- if( s2_size )
+ if ( s2_size )
cy = _gcry_mpih_add_n( res_ptr, s1_ptr, s2_ptr, s2_size );
- if( s1_size - s2_size )
+ if ( s1_size - s2_size )
cy = _gcry_mpih_add_1( res_ptr + s2_size, s1_ptr + s2_size,
s1_size - s2_size, cy);
return cy;
@@ -87,20 +87,20 @@ _gcry_mpih_sub_1(mpi_ptr_t res_ptr, mpi_ptr_t s1_ptr,
x = *s1_ptr++;
s2_limb = x - s2_limb;
*res_ptr++ = s2_limb;
- if( s2_limb > x ) {
+ if ( s2_limb > x ) {
while( --s1_size ) {
x = *s1_ptr++;
*res_ptr++ = x - 1;
- if( x )
+ if ( x )
goto leave;
}
return 1;
}
leave:
- if( res_ptr != s1_ptr ) {
+ if ( res_ptr != s1_ptr ) {
mpi_size_t i;
- for( i=0; i < s1_size-1; i++ )
+ for ( i=0; i < s1_size-1; i++ )
res_ptr[i] = s1_ptr[i];
}
return 0;
@@ -114,10 +114,10 @@ _gcry_mpih_sub( mpi_ptr_t res_ptr, mpi_ptr_t s1_ptr, mpi_size_t s1_size,
{
mpi_limb_t cy = 0;
- if( s2_size )
+ if ( s2_size )
cy = _gcry_mpih_sub_n(res_ptr, s1_ptr, s2_ptr, s2_size);
- if( s1_size - s2_size )
+ if ( s1_size - s2_size )
cy = _gcry_mpih_sub_1(res_ptr + s2_size, s1_ptr + s2_size,
s1_size - s2_size, cy);
return cy;
@@ -135,10 +135,10 @@ _gcry_mpih_cmp( mpi_ptr_t op1_ptr, mpi_ptr_t op2_ptr, mpi_size_t size )
mpi_size_t i;
mpi_limb_t op1_word, op2_word;
- for( i = size - 1; i >= 0 ; i--) {
+ for ( i = size - 1; i >= 0 ; i--) {
op1_word = op1_ptr[i];
op2_word = op2_ptr[i];
- if( op1_word != op2_word )
+ if ( op1_word != op2_word )
goto diff;
}
return 0;