static long reverseBytesInLong(long l) { ret reverseBytesInInt((int) (l >> 32)) & 0xFFFFFFFFL | ((long) reverseBytesInInt((int) l)) << 32; }