- Sort Score
- Result 10 results
- Languages All
Results 1 - 3 of 3 for 4648 (0.01 sec)
-
guava/src/com/google/common/hash/Murmur3_128HashFunction.java
case 9: k2 ^= (long) toUnsignedInt(bb.get(8)); // fall through case 8: k1 ^= bb.getLong(); break; case 7: k1 ^= (long) toUnsignedInt(bb.get(6)) << 48; // fall through case 6: k1 ^= (long) toUnsignedInt(bb.get(5)) << 40; // fall through case 5: k1 ^= (long) toUnsignedInt(bb.get(4)) << 32; // fall through case 4:Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:36:11 UTC 2025 - 5.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/session/Smb2SessionSetupResponseTest.java
byte[] blob = new byte[] { 9, 8, 7, 6 }; // Place blob further ahead to exercise pad adjustment logic int secBufOffset = Smb2Constants.SMB2_HEADER_LENGTH + 16; // beyond current bodyIndex (64+8) int sessionFlags = Smb2SessionSetupResponse.SMB2_SESSION_FLAGS_IS_NULL; buildSessionSetupBody(buf, headerStart, bodyStart, sessionFlags, secBufOffset, blob); resp.decode(buf, headerStart);
Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/util/MD4.java
* reset. * * @return the array of bytes for the resulting hash value. */ @Override public byte[] engineDigest() { // pad output to 56 mod 64; as RFC1320 puts it: congruent to 448 mod 512 final int bufferNdx = (int) (count % BLOCK_LENGTH); final int padLen = bufferNdx < 56 ? 56 - bufferNdx : 120 - bufferNdx; // padding is alwas binary 1 followed by binary 0sRegistered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 9.6K bytes - Viewed (0)