Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for bin_to_hex (0.08 sec)

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

        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) + '-' +
                    bin_to_hex(node[0], 2) +
                    bin_to_hex(node[1], 2) +
                    bin_to_hex(node[2], 2) +
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 4.1K bytes
    - Viewed (0)
  2. src/main/java/jcifs/dcerpc/UUID.java

        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) + '-'
                    + bin_to_hex(this.clock_seq_hi_and_reserved, 2) + bin_to_hex(this.clock_seq_low, 2) + '-' + bin_to_hex(this.node[ 0 ], 2)
                    + bin_to_hex(this.node[ 1 ], 2) + bin_to_hex(this.node[ 2 ], 2) + bin_to_hex(this.node[ 3 ], 2) + bin_to_hex(this.node[ 4 ], 2)
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.6K bytes
    - Viewed (0)
Back to top