Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for bytereg (0.19 sec)

  1. src/cmd/link/internal/ld/data.go

    func isRuntimeDepPkg(pkg string) bool {
    	switch pkg {
    	case "runtime",
    		"sync/atomic",          // runtime may call to sync/atomic, due to go:linkname
    		"internal/abi",         // used by reflectcall (and maybe more)
    		"internal/bytealg",     // for IndexByte
    		"internal/chacha8rand", // for rand
    		"internal/cpu":         // for cpu features
    		return true
    	}
    	return strings.HasPrefix(pkg, "runtime/internal/") && !strings.HasSuffix(pkg, "_test")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
Back to top