func runtime.GOMAXPROCS

7 uses

	runtime (current package)
		debug.go#L70: func GOMAXPROCS(n int) int {

	github.com/klauspost/compress/huff0
		compress.go#L35: 		if len(in) < parallelThreshold || runtime.GOMAXPROCS(0) == 1 {

	github.com/klauspost/compress/zstd
		decoder_options.go#L34: 		concurrent:      runtime.GOMAXPROCS(0),
		decoder_options.go#L75: 			newVal = runtime.GOMAXPROCS(0)
		encoder_options.go#L37: 		concurrent:    runtime.GOMAXPROCS(0),
		encoder_options.go#L94: 			n = runtime.GOMAXPROCS(0)

	sync
		pool.go#L240: 	size := runtime.GOMAXPROCS(0)