Lines Matching refs:signed
98 '0x0000000000000000': {signed: '0'},
99 '0x0000000000000001': {signed: '1'},
100 '0x00000000ffffffff': {signed: '4294967295'},
101 '0x0000000100000000': {signed: '4294967296'},
102 '0xffffffffffffffff': {signed: '-1', unsigned: '18446744073709551615'},
104 {signed: '-9223372036854775808', unsigned: '9223372036854775808'},
106 {signed: '-9223372034707292160', unsigned: '9223372039002259456'},
107 '0x01b69b4bacd05f15': {signed: '123456789123456789'},
109 {signed: '-123456789123456789', unsigned: '18323287284586094827'},
111 {signed: '-6510615555426900571', unsigned: '11936128518282651045'},
112 '0x5a5a5a5a5a5a5a5a': {signed: '6510615555426900570'},
114 {signed: '-4294967296', unsigned: '18446744069414584320'},
117 it('serializes to signed decimal strings', () => {
120 expect(int64.toSignedDecimalString()).toEqual(decimals.signed);
128 .toEqual(decimals.unsigned || decimals.signed);
145 const signed = Int64.fromDecimalString(decimals.signed);
146 expect(int64ToHex(signed)).toEqual(hex);