Converts an int to an 8 byte hex string.
(int i)
| 925 | |
| 926 | /** Converts an int to an 8 byte hex string. */ |
| 927 | String i2hex(int i) { |
| 928 | for (int pos=7; pos>=0; pos--) { |
| 929 | buf8[pos] = Tools.hexDigits[i&0xf]; |
| 930 | i >>>= 4; |
| 931 | } |
| 932 | return new String(buf8); |
| 933 | } |
| 934 | |
| 935 | char[] buf10; |
| 936 |