@@ -3525,7 +3525,7 @@ export function LoadBinCode( HexStr )
3525
3525
3526
3526
var len = HexStr . length ;
3527
3527
3528
- for ( var i = 0 , el = 0 , Sing = 0 , int32 = 0 ; i < len ; i += 8 )
3528
+ for ( var i = 0 , el = 0 , Sign = 0 , int32 = 0 ; i < len ; i += 8 )
3529
3529
{
3530
3530
//It is faster to read 8 hex digits at a time if possible.
3531
3531
@@ -3539,24 +3539,24 @@ export function LoadBinCode( HexStr )
3539
3539
3540
3540
( ( len - i ) < 8 ) && ( int32 <<= ( 8 - len - i ) << 2 ) ;
3541
3541
3542
- //The variable sing corrects the unusable sing bits during the 4 byte rotation algorithm.
3542
+ //The variable Sign corrects the unusable Sign bits during the 4 byte rotation algorithm.
3543
3543
3544
- Sing = int32 ;
3544
+ Sign = int32 ;
3545
3545
3546
- //Remove the Sing bit value if active for when the number is changed to int32 during rotation.
3546
+ //Remove the Sign bit value if active for when the number is changed to int32 during rotation.
3547
3547
3548
3548
int32 ^= int32 & 0x80000000 ;
3549
3549
3550
- //Rotate the 32 bit int so that each number is put in order in the BinCode array. Add the Sing Bit positions back though each rotation.
3550
+ //Rotate the 32 bit int so that each number is put in order in the BinCode array. Add the Sign Bit positions back though each rotation.
3551
3551
3552
3552
int32 = ( int32 >> 24 ) | ( ( int32 << 8 ) & 0x7FFFFFFF ) ;
3553
- BinCode [ el ++ ] = ( ( ( Sing >> 24 ) & 0x80 ) | int32 ) & 0xFF ;
3553
+ BinCode [ el ++ ] = ( ( ( Sign >> 24 ) & 0x80 ) | int32 ) & 0xFF ;
3554
3554
int32 = ( int32 >> 24 ) | ( ( int32 << 8 ) & 0x7FFFFFFF ) ;
3555
- BinCode [ el ++ ] = ( ( ( Sing >> 16 ) & 0x80 ) | int32 ) & 0xFF ;
3555
+ BinCode [ el ++ ] = ( ( ( Sign >> 16 ) & 0x80 ) | int32 ) & 0xFF ;
3556
3556
int32 = ( int32 >> 24 ) | ( ( int32 << 8 ) & 0x7FFFFFFF ) ;
3557
- BinCode [ el ++ ] = ( ( ( Sing >> 8 ) & 0x80 ) | int32 ) & 0xFF ;
3557
+ BinCode [ el ++ ] = ( ( ( Sign >> 8 ) & 0x80 ) | int32 ) & 0xFF ;
3558
3558
int32 = ( int32 >> 24 ) | ( ( int32 << 8 ) & 0x7FFFFFFF ) ;
3559
- BinCode [ el ++ ] = ( ( Sing & 0x80 ) | int32 ) & 0xFF ;
3559
+ BinCode [ el ++ ] = ( ( Sign & 0x80 ) | int32 ) & 0xFF ;
3560
3560
}
3561
3561
3562
3562
//Remove elements past the Number of bytes in HexStr because int 32 is always 4 bytes it is possible to end in an uneven number.
@@ -3947,11 +3947,11 @@ function DecodeImmediate( type, BySize, SizeSetting )
3947
3947
3948
3948
var Pad32 = 0 , Pad64 = 0 ;
3949
3949
3950
- //*Initialize the Sing value that is only set for Negative, or Positive Relative displacements.
3950
+ //*Initialize the Sign value that is only set for Negative, or Positive Relative displacements.
3951
3951
3952
- var Sing = 0 ;
3952
+ var Sign = 0 ;
3953
3953
3954
- //*Initialize the Sing Extend variable size as 0 Some Immediate numbers Sing extend.
3954
+ //*Initialize the Sign Extend variable size as 0 Some Immediate numbers Sign extend.
3955
3955
3956
3956
var Extend = 0 ;
3957
3957
@@ -4052,9 +4052,9 @@ function DecodeImmediate( type, BySize, SizeSetting )
4052
4052
4053
4053
var Center = 2 * ( 1 << ( n << 3 ) - 2 ) ;
4054
4054
4055
- //By default the Sing is Positive.
4055
+ //By default the Sign is Positive.
4056
4056
4057
- Sing = 1 ;
4057
+ Sign = 1 ;
4058
4058
4059
4059
/*-------------------------------------------------------------------------------------------------------------------------
4060
4060
Calculate the VSIB displacement size if it is a VSIB Disp8.
@@ -4074,9 +4074,9 @@ function DecodeImmediate( type, BySize, SizeSetting )
4074
4074
4075
4075
V32 = Center * 2 - V32 ;
4076
4076
4077
- //The Sing is negative.
4077
+ //The Sign is negative.
4078
4078
4079
- Sing = 2 ;
4079
+ Sign = 2 ;
4080
4080
}
4081
4081
}
4082
4082
@@ -4110,7 +4110,7 @@ function DecodeImmediate( type, BySize, SizeSetting )
4110
4110
4111
4111
//*Return the Imm.
4112
4112
4113
- return ( ( Sing > 0 ? ( Sing > 1 ? "-" : "+" ) : "" ) + Imm . toUpperCase ( ) ) ;
4113
+ return ( ( Sign > 0 ? ( Sign > 1 ? "-" : "+" ) : "" ) + Imm . toUpperCase ( ) ) ;
4114
4114
4115
4115
}
4116
4116
0 commit comments