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

1 23 4 5 6 7 8 91011>>

  /build/blueprint/
bootstrap.bash 19 # GOARCH
64 [ -z "$GOARCH" ] && GOARCH=`go env GOHOSTARCH`
70 GOTOOLDIR="$GOROOT/pkg/tool/${GOOS}_$GOARCH"
  /prebuilts/go/darwin-x86/src/
androidtest.bash 33 if [ "$GOARCH" = "" ]; then
34 echo "GOARCH must be set" 1>&2
46 GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH go build \
47 -o ../bin/go_android_${GOARCH}_exec \
nacltest.bash 18 # Check GOARCH.
39 echo 'unsupported $GOARCH for nacl: '"$naclGOARCH" 1>&2
50 GOOS=nacl GOARCH=$naclGOARCH go tool dist test --no-rebuild
  /prebuilts/go/linux-x86/src/
androidtest.bash 33 if [ "$GOARCH" = "" ]; then
34 echo "GOARCH must be set" 1>&2
46 GOOS=$GOHOSTOS GOARCH=$GOHOSTARCH go build \
47 -o ../bin/go_android_${GOARCH}_exec \
  /prebuilts/go/darwin-x86/misc/cgo/test/
cthread.go 34 if runtime.GOOS == "darwin" && (runtime.GOARCH == "arm" || runtime.GOARCH == "arm64") {
sigaltstack.go 58 case runtime.GOOS == "solaris", runtime.GOOS == "darwin" && (runtime.GOARCH == "arm" || runtime.GOARCH == "arm64"):
59 t.Skipf("switching signal stack not implemented on %s/%s", runtime.GOOS, runtime.GOARCH)
60 case runtime.GOOS == "darwin" && runtime.GOARCH == "386":
  /prebuilts/go/linux-x86/misc/cgo/test/
cthread.go 34 if runtime.GOOS == "darwin" && (runtime.GOARCH == "arm" || runtime.GOARCH == "arm64") {
  /prebuilts/go/darwin-x86/src/go/build/
build_test.go 40 match(runtime.GOOS+","+runtime.GOARCH, map[string]bool{runtime.GOOS: true, runtime.GOARCH: true})
41 match(runtime.GOOS+","+runtime.GOARCH+",!foo", map[string]bool{runtime.GOOS: true, runtime.GOARCH: true, "foo": true})
42 nomatch(runtime.GOOS+","+runtime.GOARCH+",foo", map[string]bool{runtime.GOOS: true, runtime.GOARCH: true, "foo": true})
46 match(runtime.GOOS+","+runtime.GOARCH, map[string]bool{runtime.GOOS: true, runtime.GOARCH: true})
47 match(runtime.GOOS+","+runtime.GOARCH+",foo", map[string]bool{runtime.GOOS: true, runtime.GOARCH: true, "foo": true}
    [all...]
  /prebuilts/go/linux-x86/src/go/build/
build_test.go 40 match(runtime.GOOS+","+runtime.GOARCH, map[string]bool{runtime.GOOS: true, runtime.GOARCH: true})
41 match(runtime.GOOS+","+runtime.GOARCH+",!foo", map[string]bool{runtime.GOOS: true, runtime.GOARCH: true, "foo": true})
42 nomatch(runtime.GOOS+","+runtime.GOARCH+",foo", map[string]bool{runtime.GOOS: true, runtime.GOARCH: true, "foo": true})
46 match(runtime.GOOS+","+runtime.GOARCH, map[string]bool{runtime.GOOS: true, runtime.GOARCH: true})
47 match(runtime.GOOS+","+runtime.GOARCH+",foo", map[string]bool{runtime.GOOS: true, runtime.GOARCH: true, "foo": true}
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/
generate_test.go 23 {"$GOARCH", []string{runtime.GOARCH}},
30 {"yacc -o $GOARCH/yacc_$GOFILE", []string{"go", "tool", "yacc", "-o", runtime.GOARCH + "/yacc_proc.go"}},
  /prebuilts/go/darwin-x86/src/cmd/go/testdata/generate/
test3.go 7 //go:generate echo $GOARCH $GOFILE:$GOLINE ${GOPACKAGE}abc xyz$GOPACKAGE/$GOFILE/123
  /prebuilts/go/darwin-x86/src/runtime/internal/sys/
zgoarch_386.go 5 const GOARCH = `386`
zgoarch_amd64.go 5 const GOARCH = `amd64`
zgoarch_amd64p32.go 5 const GOARCH = `amd64p32`
zgoarch_arm.go 5 const GOARCH = `arm`
zgoarch_arm64.go 5 const GOARCH = `arm64`
zgoarch_mips.go 5 const GOARCH = `mips`
zgoarch_mips64.go 5 const GOARCH = `mips64`
zgoarch_mips64le.go 5 const GOARCH = `mips64le`
zgoarch_mipsle.go 5 const GOARCH = `mipsle`
zgoarch_ppc64.go 5 const GOARCH = `ppc64`
zgoarch_ppc64le.go 5 const GOARCH = `ppc64le`
zgoarch_s390x.go 5 const GOARCH = `s390x`
  /prebuilts/go/darwin-x86/src/strings/
strings_decl.go 8 func IndexByte(s string, c byte) int // ../runtime/asm_$GOARCH.s
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug276.go 7 // Test case for issue 789. The bug only appeared for GOARCH=386.

Completed in 809 milliseconds

1 23 4 5 6 7 8 91011>>