HomeSort by relevance Sort by last modified time
    Searched refs:GOARCH (Results 201 - 225 of 408) sorted by null

1 2 3 4 5 6 7 891011>>

  /prebuilts/go/darwin-x86/src/runtime/
hash32.go 24 if GOARCH == "386" && GOOS != "nacl" && useAeshash {
hash64.go 24 if GOARCH == "amd64" && GOOS != "nacl" && useAeshash {
lfstack_64bit.go 42 if GOARCH == "amd64" {
vlrt.go 195 if GOARCH == "arm" {
201 if GOARCH == "mips" || GOARCH == "mipsle" {
264 // Floating point control word values for GOARCH=386 GO386=387.
  /prebuilts/go/darwin-x86/src/strings/
strings_s390x.go 12 func indexShortStr(s, sep string) int // ../runtime/asm_$GOARCH.s
  /prebuilts/go/darwin-x86/src/syscall/
mkpost.go 31 goarch := os.Getenv("GOARCH")
33 if goarch == "s390x" && goos == "linux" {
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue11656.go 53 switch runtime.GOARCH {
  /prebuilts/go/linux-x86/src/cmd/asm/
doc.go 18 The GOOS and GOARCH environment variables set the desired target.
  /prebuilts/go/linux-x86/src/cmd/internal/obj/arm64/
asm_test.go 45 cmd.Env = []string{"GOARCH=arm64", "GOOS=linux"}
  /prebuilts/go/linux-x86/src/os/user/
lookup_stubs.go 46 return u, fmt.Errorf("user: Current not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
  /prebuilts/go/linux-x86/src/runtime/
defs_dragonfly.go 10 GOARCH=amd64 go tool cgo -cdefs defs_dragonfly.go >defs_dragonfly_amd64.h
hash32.go 24 if GOARCH == "386" && GOOS != "nacl" && useAeshash {
hash64.go 24 if GOARCH == "amd64" && GOOS != "nacl" && useAeshash {
lfstack_64bit.go 42 if GOARCH == "amd64" {
vlrt.go 195 if GOARCH == "arm" {
201 if GOARCH == "mips" || GOARCH == "mipsle" {
264 // Floating point control word values for GOARCH=386 GO386=387.
  /prebuilts/go/linux-x86/src/strings/
strings_s390x.go 12 func indexShortStr(s, sep string) int // ../runtime/asm_$GOARCH.s
  /prebuilts/go/linux-x86/src/syscall/
mkpost.go 31 goarch := os.Getenv("GOARCH")
33 if goarch == "s390x" && goos == "linux" {
  /prebuilts/go/linux-x86/test/fixedbugs/
issue11656.go 53 switch runtime.GOARCH {
  /prebuilts/go/darwin-x86/src/cmd/vet/all/
main.go 62 host := platform{os: build.Default.GOOS, arch: build.Default.GOARCH}
96 log.Fatalf("could not parse platform %s, must be of form goos/goarch", s)
104 func (w whitelist) load(goos string, goarch string) {
105 // Look up whether goarch is a 32-bit or 64-bit architecture.
106 archbits, ok := nbits[goarch]
108 log.Fatalf("unknown bitwidth for arch %q", goarch)
111 // Look up whether goarch has a shared arch suffix,
113 archsuff := goarch
114 if x, ok := archAsmX[goarch]; ok {
122 goarch + ".txt"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vet/all/
main.go 62 host := platform{os: build.Default.GOOS, arch: build.Default.GOARCH}
96 log.Fatalf("could not parse platform %s, must be of form goos/goarch", s)
104 func (w whitelist) load(goos string, goarch string) {
105 // Look up whether goarch is a 32-bit or 64-bit architecture.
106 archbits, ok := nbits[goarch]
108 log.Fatalf("unknown bitwidth for arch %q", goarch)
111 // Look up whether goarch has a shared arch suffix,
113 archsuff := goarch
114 if x, ok := archAsmX[goarch]; ok {
122 goarch + ".txt"
    [all...]
  /prebuilts/go/darwin-x86/src/go/build/
build.go 31 GOARCH string // target architecture
45 // consider the values of GOARCH and GOOS as satisfied tags.
256 // It uses the GOARCH, GOOS, GOROOT, and GOPATH environment variables
257 // if set, or else the compiled code's GOARCH, GOOS, and GOROOT.
282 c.GOARCH = envOr("GOARCH", runtime.GOARCH)
306 if runtime.GOARCH == c.GOARCH && runtime.GOOS == c.GOOS {
307 c.CgoEnabled = cgoEnabled[c.GOOS+"/"+c.GOARCH]
    [all...]
  /prebuilts/go/linux-x86/src/go/build/
build.go 31 GOARCH string // target architecture
45 // consider the values of GOARCH and GOOS as satisfied tags.
256 // It uses the GOARCH, GOOS, GOROOT, and GOPATH environment variables
257 // if set, or else the compiled code's GOARCH, GOOS, and GOROOT.
282 c.GOARCH = envOr("GOARCH", runtime.GOARCH)
306 if runtime.GOARCH == c.GOARCH && runtime.GOOS == c.GOOS {
307 c.CgoEnabled = cgoEnabled[c.GOOS+"/"+c.GOARCH]
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/
run.go 22 if goos == runtime.GOOS && goarch == runtime.GOARCH {
25 path, err := exec.LookPath(fmt.Sprintf("go_%s_%s_exec", goos, goarch))
42 If the -exec flag is not given, GOOS or GOARCH is different from the system
  /prebuilts/go/darwin-x86/src/crypto/md5/
gen.go 210 const x86 = runtime.GOARCH == "amd64" || runtime.GOARCH == "386"
  /prebuilts/go/darwin-x86/src/net/
platform_test.go 40 if runtime.GOOS == "darwin" && (runtime.GOARCH == "arm" || runtime.GOARCH == "arm64") {

Completed in 574 milliseconds

1 2 3 4 5 6 7 891011>>