Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for itabHashFunc (0.16 sec)

  1. src/runtime/iface.go

    	size    uintptr             // length of entries array. Always a power of 2.
    	count   uintptr             // current number of filled entries.
    	entries [itabInitSize]*itab // really [size] large
    }
    
    func itabHashFunc(inter *interfacetype, typ *_type) uintptr {
    	// compiler has provided some good hash codes for us.
    	return uintptr(inter.Type.Hash ^ typ.Hash)
    }
    
    // getitab should be an internal detail,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/test/inl_test.go

    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 04:07:57 UTC 2024
    - 10.7K bytes
    - Viewed (0)
Back to top