Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 12 of 12 for randInt (0.17 sec)

  1. src/runtime/export_test.go

    		}
    	}
    
    	startTheWorld(stw)
    
    	return
    }
    
    func Fastrand() uint32          { return uint32(rand()) }
    func Fastrand64() uint64        { return rand() }
    func Fastrandn(n uint32) uint32 { return randn(n) }
    
    type ProfBuf profBuf
    
    func NewProfBuf(hdrsize, bufwords, tags int) *ProfBuf {
    	return (*ProfBuf)(newProfBuf(hdrsize, bufwords, tags))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
  2. src/runtime/proc.go

    	worldStopped()
    
    	ticks.init() // run as early as possible
    	moduledataverify()
    	stackinit()
    	mallocinit()
    	godebug := getGodebugEarly()
    	cpuinit(godebug) // must run before alginit
    	randinit()       // must run before alginit, mcommoninit
    	alginit()        // maps, hash, rand must not be used before this call
    	mcommoninit(gp.m, -1)
    	modulesinit()   // provides activeModules
    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