Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestSmhasherSmallKeys (0.21 sec)

  1. src/hash/maphash/smhasher_test.go

    	s := "hello" + strings.Repeat("\x00", 256)
    	h := newHashSet()
    	for i := 0; i <= len(s); i++ {
    		h.addS(s[:i])
    	}
    	h.check(t)
    }
    
    // All 0-3 byte strings have distinct hashes.
    func TestSmhasherSmallKeys(t *testing.T) {
    	testenv.ParallelOn64Bit(t)
    	h := newHashSet()
    	var b [3]byte
    	for i := 0; i < 256; i++ {
    		b[0] = byte(i)
    		h.addB(b[:1])
    		for j := 0; j < 256; j++ {
    			b[1] = byte(j)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 16:41:38 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. src/runtime/hash_test.go

    	s := "hello" + strings.Repeat("\x00", 256)
    	h := newHashSet()
    	for i := 0; i <= len(s); i++ {
    		h.addS(s[:i])
    	}
    	h.check(t)
    }
    
    // All 0-3 byte strings have distinct hashes.
    func TestSmhasherSmallKeys(t *testing.T) {
    	if race.Enabled {
    		t.Skip("Too long for race mode")
    	}
    	testenv.ParallelOn64Bit(t)
    	h := newHashSet()
    	var b [3]byte
    	for i := 0; i < 256; i++ {
    		b[0] = byte(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 06 17:50:18 UTC 2024
    - 18.4K bytes
    - Viewed (0)
Back to top