Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for hex (0.51 sec)

  1. src/main/java/jcifs/dcerpc/UUID.java

            this.node[ 3 ] = B(hex_to_bin(arr, 30, 2));
            this.node[ 4 ] = B(hex_to_bin(arr, 32, 2));
            this.node[ 5 ] = B(hex_to_bin(arr, 34, 2));
        }
    
    
        @Override
        public String toString () {
            return bin_to_hex(this.time_low, 8) + '-' + bin_to_hex(this.time_mid, 4) + '-' + bin_to_hex(this.time_hi_and_version, 4) + '-'
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 4.6K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/dcerpc/UUID.java

            node[3] = B(hex_to_bin(arr, 30, 2));
            node[4] = B(hex_to_bin(arr, 32, 2));
            node[5] = B(hex_to_bin(arr, 34, 2));
        }
    
        public String toString() {
            return bin_to_hex(time_low, 8) + '-' +
                    bin_to_hex(time_mid, 4) + '-' +
                    bin_to_hex(time_hi_and_version, 4) + '-' +
                    bin_to_hex(clock_seq_hi_and_reserved, 2) +
                    bin_to_hex(clock_seq_low, 2) + '-' +
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 20:39:42 GMT 2019
    - 4.1K bytes
    - Viewed (0)
Back to top