summaryrefslogtreecommitdiff
path: root/plugins/MirOTR/libgcrypt-1.4.6/mpi/mpi-scan.c
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2012-06-02 20:55:18 +0000
committerGeorge Hazan <george.hazan@gmail.com>2012-06-02 20:55:18 +0000
commit78c0815c4118fe24ab78cce2dc48a6232dcd824a (patch)
tree8512c50df70b8dd80c919e88ade3419207c95956 /plugins/MirOTR/libgcrypt-1.4.6/mpi/mpi-scan.c
parentce816d83a8c75808e0eb06832592bffefe4a8dc4 (diff)
- code cleaning
git-svn-id: http://svn.miranda-ng.org/main/trunk@270 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirOTR/libgcrypt-1.4.6/mpi/mpi-scan.c')
-rw-r--r--plugins/MirOTR/libgcrypt-1.4.6/mpi/mpi-scan.c32
1 files changed, 16 insertions, 16 deletions
diff --git a/plugins/MirOTR/libgcrypt-1.4.6/mpi/mpi-scan.c b/plugins/MirOTR/libgcrypt-1.4.6/mpi/mpi-scan.c
index 90699cdd69..e06d990150 100644
--- a/plugins/MirOTR/libgcrypt-1.4.6/mpi/mpi-scan.c
+++ b/plugins/MirOTR/libgcrypt-1.4.6/mpi/mpi-scan.c
@@ -42,8 +42,8 @@ _gcry_mpi_getbyte( gcry_mpi_t a, unsigned idx )
ap = a->d;
for(n=0,i=0; i < a->nlimbs; i++ ) {
limb = ap[i];
- for( j=0; j < BYTES_PER_MPI_LIMB; j++, n++ )
- if( n == idx )
+ for ( j=0; j < BYTES_PER_MPI_LIMB; j++, n++ )
+ if ( n == idx )
return (limb >> j*8) & 0xff;
}
return -1;
@@ -65,38 +65,38 @@ _gcry_mpi_putbyte( gcry_mpi_t a, unsigned idx, int xc )
ap = a->d;
for(n=0,i=0; i < a->alloced; i++ ) {
limb = ap[i];
- for( j=0; j < BYTES_PER_MPI_LIMB; j++, n++ )
- if( n == idx ) {
+ for ( j=0; j < BYTES_PER_MPI_LIMB; j++, n++ )
+ if ( n == idx ) {
#if BYTES_PER_MPI_LIMB == 4
- if( j == 0 )
+ if ( j == 0 )
limb = (limb & 0xffffff00) | c;
- else if( j == 1 )
+ else if ( j == 1 )
limb = (limb & 0xffff00ff) | (c<<8);
- else if( j == 2 )
+ else if ( j == 2 )
limb = (limb & 0xff00ffff) | (c<<16);
else
limb = (limb & 0x00ffffff) | (c<<24);
#elif BYTES_PER_MPI_LIMB == 8
- if( j == 0 )
+ if ( j == 0 )
limb = (limb & 0xffffffffffffff00) | c;
- else if( j == 1 )
+ else if ( j == 1 )
limb = (limb & 0xffffffffffff00ff) | (c<<8);
- else if( j == 2 )
+ else if ( j == 2 )
limb = (limb & 0xffffffffff00ffff) | (c<<16);
- else if( j == 3 )
+ else if ( j == 3 )
limb = (limb & 0xffffffff00ffffff) | (c<<24);
- else if( j == 4 )
+ else if ( j == 4 )
limb = (limb & 0xffffff00ffffffff) | (c<<32);
- else if( j == 5 )
+ else if ( j == 5 )
limb = (limb & 0xffff00ffffffffff) | (c<<40);
- else if( j == 6 )
+ else if ( j == 6 )
limb = (limb & 0xff00ffffffffffff) | (c<<48);
else
limb = (limb & 0x00ffffffffffffff) | (c<<56);
#else
#error please enhance this function, its ugly - i know.
#endif
- if( a->nlimbs <= i )
+ if ( a->nlimbs <= i )
a->nlimbs = i+1;
ap[i] = limb;
return;
@@ -115,7 +115,7 @@ _gcry_mpi_trailing_zeros( gcry_mpi_t a )
unsigned n, count = 0;
for(n=0; n < a->nlimbs; n++ ) {
- if( a->d[n] ) {
+ if ( a->d[n] ) {
unsigned nn;
mpi_limb_t alimb = a->d[n];