- Sort Score
- Result 10 results
- Languages All
Results 1 - 2 of 2 for hex_to_bin (0.05 sec)
-
src/main/java/jcifs/smb1/dcerpc/UUID.java
char[] arr = str.toCharArray(); time_low = hex_to_bin(arr, 0, 8); time_mid = S(hex_to_bin(arr, 9, 4)); time_hi_and_version = S(hex_to_bin(arr, 14, 4)); clock_seq_hi_and_reserved = B(hex_to_bin(arr, 19, 2)); clock_seq_low = B(hex_to_bin(arr, 21, 2)); node = new byte[6]; node[0] = B(hex_to_bin(arr, 24, 2)); node[1] = B(hex_to_bin(arr, 26, 2)); node[2] = B(hex_to_bin(arr, 28, 2));
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Fri Mar 22 20:39:42 UTC 2019 - 4.1K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/UUID.java
char[] arr = str.toCharArray(); this.time_low = hex_to_bin(arr, 0, 8); this.time_mid = S(hex_to_bin(arr, 9, 4)); this.time_hi_and_version = S(hex_to_bin(arr, 14, 4)); this.clock_seq_hi_and_reserved = B(hex_to_bin(arr, 19, 2)); this.clock_seq_low = B(hex_to_bin(arr, 21, 2)); this.node = new byte[6]; this.node[ 0 ] = B(hex_to_bin(arr, 24, 2));
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sun Jul 01 13:12:10 UTC 2018 - 4.6K bytes - Viewed (0)