Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for memhash0 (0.23 sec)

  1. src/cmd/internal/goobj/builtinlist.go

    	{"runtime.c128equal", 1},
    	{"runtime.strequal", 1},
    	{"runtime.interequal", 1},
    	{"runtime.nilinterequal", 1},
    	{"runtime.memhash", 1},
    	{"runtime.memhash0", 1},
    	{"runtime.memhash8", 1},
    	{"runtime.memhash16", 1},
    	{"runtime.memhash32", 1},
    	{"runtime.memhash64", 1},
    	{"runtime.memhash128", 1},
    	{"runtime.f32hash", 1},
    	{"runtime.f64hash", 1},
    	{"runtime.c64hash", 1},
    	{"runtime.c128hash", 1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. src/runtime/tracemap.go

    // the data has been added to the map.
    func (tab *traceMap) put(data unsafe.Pointer, size uintptr) (uint64, bool) {
    	if size == 0 {
    		return 0, false
    	}
    	hash := memhash(data, 0, size)
    
    	var newNode *traceMapNode
    	m := &tab.root
    	hashIter := hash
    	for {
    		n := (*traceMapNode)(m.Load())
    		if n == nil {
    			// Try to insert a new map node. We may end up discarding
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top