Lines Matching refs:decimals
118 for (const [hex, decimals] of Object.entries(decimalHexPairs)) {
120 expect(int64.toSignedDecimalString()).toEqual(decimals.signed);
125 for (const [hex, decimals] of Object.entries(decimalHexPairs)) {
128 .toEqual(decimals.unsigned || decimals.signed);
133 for (const [hex, decimals] of Object.entries(decimalHexPairs)) {
144 for (const [hex, decimals] of Object.entries(decimalHexPairs)) {
145 const signed = Int64.fromDecimalString(decimals.signed);
147 if (decimals.unsigned) {
148 const unsigned = Int64.fromDecimalString(decimals.unsigned);
155 for (const [hex, decimals] of Object.entries(decimalHexPairs)) {