Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for itabInit (0.09 sec)

  1. src/runtime/iface.go

    			t.count++
    			return
    		}
    		h += i
    		h &= mask
    	}
    }
    
    // itabInit fills in the m.Fun array with all the code pointers for
    // the m.Inter/m.Type pair. If the type does not implement the interface,
    // it sets m.Fun[0] to 0 and returns the name of an interface function that is missing.
    // If !firstTime, itabInit will not write anything to m.Fun (see issue 65962).
    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/runtime/proc.go

    	alginit()        // maps, hash, rand must not be used before this call
    	mcommoninit(gp.m, -1)
    	modulesinit()   // provides activeModules
    	typelinksinit() // uses maps, activeModules
    	itabsinit()     // uses activeModules
    	stkobjinit()    // must run before GC starts
    
    	sigsave(&gp.m.sigmask)
    	initSigmask = gp.m.sigmask
    
    	goargs()
    	goenvs()
    	secure()
    	checkfds()
    	parsedebugvars()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top