Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for 648 (0.01 sec)

  1. android/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 Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Apr 14 16:36:11 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  2. 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: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 9.7K bytes
    - Viewed (0)
Back to top