Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Di (0.15 sec)

  1. src/main/java/jcifs/smb1/util/Encdec.java

        public static int enc_uint16be( short s, byte[] dst, int di ) {
            dst[di++] = (byte)((s >> 8) & 0xFF);
            dst[di] = (byte)(s & 0xFF);
            return 2;
        }
        public static int enc_uint32be( int i, byte[] dst, int di ) {
            dst[di++] = (byte)((i >> 24) & 0xFF);
            dst[di++] = (byte)((i >> 16) & 0xFF);
            dst[di++] = (byte)((i >> 8) & 0xFF);
            dst[di] = (byte)(i & 0xFF);
            return 4;
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 10.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/util/Encdec.java

            dst[ di++ ] = (byte) ( s & 0xFF );
            dst[ di ] = (byte) ( ( s >> 8 ) & 0xFF );
            return 2;
        }
    
    
        public static int enc_uint32le ( int i, byte[] dst, int di ) {
            dst[ di++ ] = (byte) ( i & 0xFF );
            dst[ di++ ] = (byte) ( ( i >> 8 ) & 0xFF );
            dst[ di++ ] = (byte) ( ( i >> 16 ) & 0xFF );
            dst[ di ] = (byte) ( ( i >> 24 ) & 0xFF );
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11K bytes
    - Viewed (0)
Back to top