vendor/golang.org/x/sys/cpu.option.Name (field)

19 uses

	internal/cpu
		cpu.go#L135: 	Name      string
		cpu.go#L188: 			if options[i].Name == key {
		cpu.go#L204: 			print("GODEBUG: can not enable \"", o.Name, "\", missing CPU support\n")
		cpu.go#L209: 			print("GODEBUG: can not disable \"", o.Name, "\", required CPU feature\n")
		cpu_x86.go#L45: 		{Name: "adx", Feature: &X86.HasADX},
		cpu_x86.go#L46: 		{Name: "aes", Feature: &X86.HasAES},
		cpu_x86.go#L47: 		{Name: "avx", Feature: &X86.HasAVX},
		cpu_x86.go#L48: 		{Name: "avx2", Feature: &X86.HasAVX2},
		cpu_x86.go#L49: 		{Name: "bmi1", Feature: &X86.HasBMI1},
		cpu_x86.go#L50: 		{Name: "bmi2", Feature: &X86.HasBMI2},
		cpu_x86.go#L51: 		{Name: "erms", Feature: &X86.HasERMS},
		cpu_x86.go#L52: 		{Name: "fma", Feature: &X86.HasFMA},
		cpu_x86.go#L53: 		{Name: "pclmulqdq", Feature: &X86.HasPCLMULQDQ},
		cpu_x86.go#L54: 		{Name: "popcnt", Feature: &X86.HasPOPCNT},
		cpu_x86.go#L55: 		{Name: "sse3", Feature: &X86.HasSSE3},
		cpu_x86.go#L56: 		{Name: "sse41", Feature: &X86.HasSSE41},
		cpu_x86.go#L57: 		{Name: "sse42", Feature: &X86.HasSSE42},
		cpu_x86.go#L58: 		{Name: "ssse3", Feature: &X86.HasSSSE3},
		cpu_x86.go#L61: 		{Name: "sse2", Feature: &X86.HasSSE2, Required: GOARCH == "amd64"},