Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for testVectors (0.06 sec)

  1. android/guava-tests/test/com/google/common/hash/SipHashFunctionTest.java

            0x60e61c23a3795013L,
            0x6606d7e446282b93L,
            0x6ca4ecb15c5f91e1L,
            0x9f626da15c9625f3L,
            0xe51b38608ef25f57L,
            0x958a324ceb064572L
          };
    
      public void testVectors() {
        for (int i = 0; i < EXPECTED.length; ++i) {
          byte[] msg = new byte[i];
          for (int j = 0; j < i; ++j) {
            msg[j] = (byte) j;
          }
          assertSip(msg, EXPECTED[i]);
        }
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:22:54 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/hash/SipHashFunctionTest.java

            0x60e61c23a3795013L,
            0x6606d7e446282b93L,
            0x6ca4ecb15c5f91e1L,
            0x9f626da15c9625f3L,
            0xe51b38608ef25f57L,
            0x958a324ceb064572L
          };
    
      public void testVectors() {
        for (int i = 0; i < EXPECTED.length; ++i) {
          byte[] msg = new byte[i];
          for (int j = 0; j < i; ++j) {
            msg[j] = (byte) j;
          }
          assertSip(msg, EXPECTED[i]);
        }
      }
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:22:54 UTC 2024
    - 6.6K bytes
    - Viewed (0)
Back to top