Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

            dst[di++] = (byte)((i >> 16) & 0xFF);
            dst[di] = (byte)((i >> 24) & 0xFF);
            return 4;
        }
    
        /* Decode integers
         */
    
        public static short dec_uint16be( byte[] src, int si )
        {
            return (short)(((src[si] & 0xFF) << 8) | (src[si + 1] & 0xFF));
        }
        public static int dec_uint32be( byte[] src, int si )
        {
    Java
    - Registered: Sun May 05 00:10:10 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) ( ( i >> 16 ) & 0xFF );
            dst[ di ] = (byte) ( ( i >> 24 ) & 0xFF );
            return 4;
        }
    
    
        /*
         * Decode integers
         */
    
        public static short dec_uint16be ( byte[] src, int si ) {
            return (short) ( ( ( src[ si ] & 0xFF ) << 8 ) | ( src[ si + 1 ] & 0xFF ) );
        }
    
    
        public static int dec_uint32be ( byte[] src, int si ) {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 11K bytes
    - Viewed (0)
Back to top